mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-26 09:20:35 +05:00
Correct an example
This commit is contained in:
parent
cd4fec571d
commit
d27bd97984
4
doc/salome/examples/repairing_operations_ex01.py
Normal file → Executable file
4
doc/salome/examples/repairing_operations_ex01.py
Normal file → Executable file
@ -19,7 +19,7 @@ theShape = geompy.MakePrismVecH(face, edge, 130)
|
|||||||
|
|
||||||
# check the shape at the beginning
|
# check the shape at the beginning
|
||||||
print("Before ProcessShape:")
|
print("Before ProcessShape:")
|
||||||
isValid = geompy.CheckShape(theShape)
|
isValid = geompy.CheckShape(theShape, True)
|
||||||
if isValid == 0:
|
if isValid == 0:
|
||||||
print("The shape is not valid")
|
print("The shape is not valid")
|
||||||
else:
|
else:
|
||||||
@ -33,7 +33,7 @@ PS = geompy.ProcessShape(theShape, Operators, Parameters, Values)
|
|||||||
|
|
||||||
# check the shape at the end
|
# check the shape at the end
|
||||||
print("After ProcessShape:")
|
print("After ProcessShape:")
|
||||||
isValid = geompy.CheckShape(PS)
|
isValid = geompy.CheckShape(PS, True)
|
||||||
if isValid == 0:
|
if isValid == 0:
|
||||||
print("The shape is not valid")
|
print("The shape is not valid")
|
||||||
raise RuntimeError("It seems, that the ProcessShape() has failed")
|
raise RuntimeError("It seems, that the ProcessShape() has failed")
|
||||||
|
Loading…
Reference in New Issue
Block a user