radius#
- clip.radius(*args, **kwargs) Any #
Set the radius for a sphere or cylinder clip.
- Args:
- p0:
‘value’ radius for the sphere or cylinder clip
- Examples:
# # Select the parent part # ensight.part.select_begin(1) ensight.clip.begin() # # Create a cylinder clip of # radius=0.5 with origin and # axis as shown # ensight.clip.domain("intersect") ensight.clip.tool("cylinder") ensight.clip.origin(0,0,0) ensight.clip.axis(1,0,0) ensight.clip.radius(.5) ensight.clip.end() ensight.clip.create()
- Returns:
zero on success, non-zero on error