mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-12 00:29:18 +05:00
21 lines
445 B
Plaintext
21 lines
445 B
Plaintext
/*!
|
|
|
|
\page tui_tolerance_page Tolerance
|
|
|
|
\code
|
|
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]
|
|
\endcode
|
|
|
|
*/
|