[page:Group] →

[name]

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.

Constructor

[name]( )

Properties

See the base [page:Group] class for common properties.

[property:Boolean isClippingGroup]

Read-only flag to check if a given object is of type [name].

[property:Array clippingPlanes]

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 `[]`.

[property:Boolean enabled]

Determines if the clipping planes defined by this object are applied. Default is `true`.

[property:Boolean clipIntersection]

Changes the behavior of clipping planes so that only their intersection is clipped, rather than their union. Default is `false`.

[property:Boolean clipShadows]

Defines whether to clip shadows according to the clipping planes specified by this ClippingGroup. Default is `false`.

Methods

See the base [page:Object3D] class for common methods.

Source

[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]