Salome HOME
updated copyright message
[modules/shaper.git] / src / FeaturesPlugin / Test / Test2738.py
index dad6fe0d8b7aca58e4b8782ffa745cfc80812ffd..79d654c9f158e8ffbb89e68ed1884285e1bc753d 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2014-2019  CEA/DEN, EDF R&D
+# Copyright (C) 2014-2023  CEA/DEN, EDF R&D
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -37,7 +37,7 @@ Partition_1 = model.addPartition(Part_1_doc, [model.selection("COMPOUND", "all-i
 Group_1 = model.addGroup(Part_1_doc, [model.selection("SOLID", (-34.12026714434272, 28.71281409244911, 1.5))])
 Group_1.setName("Group_dechets")
 Group_1.result().setName("Group_dechets")
-Group_2 = model.addGroup(Part_1_doc, [model.selection("SOLID", (-34.12026714434272, 28.71281409244911, 2.35984679315518))])
+Group_2 = model.addGroup(Part_1_doc, [model.selection("SOLID", (-34.12026714434272, 28.71281409244911, 2.554668601838412))])
 Group_2.setName("Group_colis")
 Group_2.result().setName("Group_colis")
 LinearCopy_1 = model.addMultiTranslation(Part_1_doc, [model.selection("COMPSOLID", (-34.12026714434272, 28.71281409244911, 2.5))], model.selection("EDGE", "PartSet/OX"), "d", "nb", model.selection("EDGE", "PartSet/OY"), "d", "nb")
@@ -56,7 +56,7 @@ assert(selectionList.size() == 9)
 assert(aFactory.validate(Group_1.feature()))
 # checkthat solids in the first group are small, like the origin
 for i in range(9):
-  delta = GeomAlgoAPI_ShapeTools_volume(selectionList.value(i).value()) - 8.236773528312948
+  delta = GeomAlgoAPI_ShapeTools.volume(selectionList.value(i).value()) - 8.236773528312948
   assert(fabs(delta) < 1.e-5)
 
 # same-plane faces should be merged
@@ -66,7 +66,7 @@ assert(aFactory.validate(Group_2.feature()))
 
 # checkthat solids in the secong group are big, like the origin
 for i in range(9):
-  delta = GeomAlgoAPI_ShapeTools_volume(selectionList.value(i).value()) - 150.66735294710597
+  delta = GeomAlgoAPI_ShapeTools.volume(selectionList.value(i).value()) - 150.66735294710597
   assert(fabs(delta) < 1.e-5)
 
 assert(model.checkPythonDump())