Version: 6.5.0
Main Page
Related Pages
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Groups
Pages
Check Shape
import
geompy
# create a box
box = geompy.MakeBoxDXDYDZ(100,30,100)
IsValid = geompy.CheckShape(box)
if
IsValid == 0:
raise
RuntimeError,
"Invalid box created"
else
:
print
"\nBox is valid"