 |
ModelUtilsSliceSceneNode(Plane, SceneNode, Transform) Method |
Note: This API is now obsolete.
Slices the specified SceneNode with the specified Plane and returns two new SceneNode objects:
one SceneNode that is in front of the plane (in the direction of plane's Normal vector) and one SceneNode that is in the back of the plane.
If the specified SceneNode is fully in front (or in back) of the Plane, then the same instance of SceneNode is returned (the other returned SceneNode is null).
If the specified SceneNode intersects the Plane, it is sliced and new SceneNode objects are created from it.
Namespace: Ab4d.SharpEngine.UtilitiesAssembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 4.0.9584+ba1aaa26d4181dd3fa8ed7b6398391d1affa36c8
Syntax[ObsoleteAttribute("SliceXYZ methods from ModelUtils is obsolete. Please use the new Slicer class that works faster and provides more options.")]
public static (SceneNode frontSceneNodes, SceneNode? backSceneNodes) SliceSceneNode(
Plane plane,
SceneNode sceneNode,
Transform? parentTransform
)Parameters
- plane Plane
- Plane
- sceneNode SceneNode
- SceneNode to slice
- parentTransform Transform
- additional transformation that transforms the sceneNode
Return Value
ValueTupleSceneNode,
SceneNode(frontSceneNodes, backSceneNodes) - two SceneNode as a Tuple
See Also