dimension2#

clip.dimension2(*args, **kwargs) Any#

Specify the minimum/maximum range for the non-constant I/J/K extract.

For an I/J/K extract the user specifies that he wants to create a part of constant I, J, or K and an extract value. These parameters specify the range for the non-constant plane.
Args:
p0:

‘min’ minimum plane value integer

p1:

‘max’ maximum plane value integer

Examples:
#
# Select an existing I plane
# extract an modify the J range = 10 to 60
# and the K range to be 1 to 45
#
ensight.part.select_begin(3)
ensight.part.modify_begin()
ensight.clip.dimension2(10,60)
ensight.clip.dimension3(1,45)
ensight.part.modify_end()
Returns:

zero on success, non-zero on error