value#
- clip.value(*args, **kwargs) Any #
Specify the constant plane value for XYZ or IJK clips.
For IJK clips the plane_value must be an integer.- Args:
- p0:
‘plane_value’ value for the plane
- Examples:
# # Select the parent part # ensight.part.select_begin(2) ensight.clip.begin() # # Create a clip of y=1.5 # ensight.clip.value(1.5) ensight.clip.domain("intersect") ensight.clip.tool("xyz") ensight.clip.mesh_plane("Y") ensight.clip.end() ensight.clip.create()
- Returns:
zero on success, non-zero on error