mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-12 00:29:18 +05:00
15 lines
398 B
Python
15 lines
398 B
Python
|
# Tolerance
|
||
|
|
||
|
import geompy
|
||
|
|
||
|
# create a box
|
||
|
box = geompy.MakeBoxDXDYDZ(100,30,100)
|
||
|
Toler = geompy.Tolerance(box)
|
||
|
print "\nBox 100x30x100 tolerance:"
|
||
|
print " Face min. tolerance: ", Toler[0]
|
||
|
print " Face max. tolerance: ", Toler[1]
|
||
|
print " Edge min. tolerance: ", Toler[2]
|
||
|
print " Edge max. tolerance: ", Toler[3]
|
||
|
print " Vertex min. tolerance: ", Toler[4]
|
||
|
print " Vertex max. tolerance: ", Toler[5]
|