pymel.core.modeling.tolerance¶
- tolerance(*args, **kwargs)¶
This command sets tolerances used by modelling operations that require a tolerance, such as surface fillet. Linear tolerance is also known as positionaltolerance. Angular tolerance is also known as tangentialtolerance. In query mode, return type is based on queried flag.
Flags:
Long Name / Short Name Argument Types Properties angular / a float Sets the angular, or tangentialtolerance. linear / l float Sets the linear, or positonaltolerance. Flag can have multiple arguments, passed either as a tuple or a list. Derived from mel command maya.cmds.tolerance
Example:
import pymel.core as pm pm.tolerance( linear=0.02 )# sets the tolerance to 0.02, in the current unit pm.tolerance( linear='0.02cm' )# sets the tolerance to 0.02 cm pm.tolerance( angular='0.02rad' )# sets the angle tolerance to 0.02 radians pm.tolerance( q=True, linear=True )# returns the current tolerance in the current unit # Result: 0.02 # pm.tolerance( q=True, angular=True )# returns the current tolerance in the current unit # Result: 1.1459155902616465 #