A special version of the Group object that defines clipping planes for descendant objects. ClippingGroups can be nested, with clipping planes accumulating by type: intersection or union.
Note: ClippingGroup is only supported with WebGPURenderer.
See the base [page:Group] class for common properties.
Read-only flag to check if a given object is of type [name].
User-defined clipping planes specified as THREE.Plane objects in world space. These planes apply to the objects that are children of this ClippingGroup. Points in space whose signed distance to the plane is negative are clipped (not rendered). See the [example:webgpu_clipping webgpu / clipping] example. Default is `[]`.
Determines if the clipping planes defined by this object are applied. Default is `true`.
Changes the behavior of clipping planes so that only their intersection is clipped, rather than their union. Default is `false`.
Defines whether to clip shadows according to the clipping planes specified by this ClippingGroup. Default is `false`.
See the base [page:Object3D] class for common methods.
[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]