rtz_axis#

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

Specify the axis to be used for RTZ clips. Theta is about this axis.

The axis is in reference to the frame associated with the parent part(s).
Args:
p0:

‘axis’

  • X

  • Y

  • Z

Examples:
#
# Select a parent part
#
ensight.part.select_begin(2)
ensight.clip.begin()
#
# Create a Z RTZ clip about the Z axis at Z=0.
#
ensight.clip.tool("rtz")
ensight.clip.rtz_axis("Z")
ensight.clip.value(0.)
ensight.clip.domain("intersect")
ensight.clip.mesh_plane("Z")
ensight.clip.end()
ensight.clip.create()
Returns:

zero on success, non-zero on error