@itwin/core-frontend
Version:
iTwin.js frontend components
16 lines • 742 B
TypeScript
/** @packageDocumentation
* @module Rendering
*/
import { ClipVector } from "@itwin/core-geometry";
/** An opaque representation of a clip volume applied to geometry within a [[Viewport]].
* A RenderClipVolume is created from a [[ClipVector]] and takes ownership of that ClipVector, expecting that it will not be modified while the RenderClipVolume still references it.
* @see [[RenderSystem.createClipVolume]] to create a clip volume.
* @public
* @extensions
*/
export declare abstract class RenderClipVolume {
/** The ClipVector from which this volume was created. It must not be modified. */
readonly clipVector: ClipVector;
protected constructor(clipVector: ClipVector);
}
//# sourceMappingURL=RenderClipVolume.d.ts.map