UNPKG

three

Version:

JavaScript 3D library

20 lines (12 loc) 281 B
import { Group } from './Group.js'; class ClippingGroup extends Group { constructor() { super(); this.isClippingGroup = true; this.clippingPlanes = []; this.enabled = true; this.clipIntersection = false; this.clipShadows = false; } } export { ClippingGroup };