@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
32 lines (31 loc) • 765 B
TypeScript
import type { Nullable } from "../../types.js";
import type { Plane } from "../../Maths/math.js";
/**
* Interface used to define entities containing multiple clip planes
*/
export interface IClipPlanesHolder {
/**
* Gets or sets the active clipplane 1
*/
clipPlane: Nullable<Plane>;
/**
* Gets or sets the active clipplane 2
*/
clipPlane2: Nullable<Plane>;
/**
* Gets or sets the active clipplane 3
*/
clipPlane3: Nullable<Plane>;
/**
* Gets or sets the active clipplane 4
*/
clipPlane4: Nullable<Plane>;
/**
* Gets or sets the active clipplane 5
*/
clipPlane5: Nullable<Plane>;
/**
* Gets or sets the active clipplane 6
*/
clipPlane6: Nullable<Plane>;
}