AnnotationData¶
Interface AnnotationData
interface AnnotationData {
active: boolean;
anchorPosition: Vector3 | Float32Array<ArrayBufferLike>;
explicitOffset: boolean;
label: string;
labelPosition: Vector3 | Float32Array<ArrayBufferLike>;
nodeID: number;
transform: Matrix4x4 | Float32Array<ArrayBufferLike>;
trustedSource: boolean;
visible: boolean;
}
active: boolean;
anchorPosition: Vector3 | Float32Array<ArrayBufferLike>;
explicitOffset: boolean;
label: string;
labelPosition: Vector3 | Float32Array<ArrayBufferLike>;
nodeID: number;
transform: Matrix4x4 | Float32Array<ArrayBufferLike>;
trustedSource: boolean;
visible: boolean;
}
Index
Properties
active
active: boolean
Determines whether the annotation is active or not.
anchor Position
Determines the annotation's anchor position.
explicit Offset
explicitOffset: boolean
Determines whether an explicit offset should be used or not.
label
label: string
The label of the annotation.
label Position
Determines the annotation's label position.
node ID
nodeID: number
The ID of a node the annotation is linked to.
transform
Provides the transform of the annotation.
trusted Source
trustedSource: boolean
Determines whether the annotation source is trusted or not.
visible
visible: boolean
Determines whether the annotation is visible or not.
Was this page helpful? Please leave a thumbs up or down.
AnnotationData defines the properties and content of an annotation.
See
AnnotationAPI