Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ShapeComponent

Component wrapping a Shape object

example

// get a shape component by adding a shape object to the stage var shape = new NGL.Shape( "shape" ); shape.addSphere( [ 0, 0, 0 ], [ 1, 0, 0 ], 1.5 ); var shapeComponent = stage.addComponentFromObject( shape ); shapeComponent.addRepresentation( "buffer" );

Hierarchy

Implements

Index

Constructors

constructor

Properties

annotationList

annotationList: Annotation[] = []

controls

matrix

matrix: Matrix4 = new Matrix4()

Readonly object

object: any

Readonly parameters

position

position: Vector3 = new Vector3()

quaternion

quaternion: Quaternion = new Quaternion()

reprList

reprList: RepresentationElement[] = []

scale

scale: Vector3 = new Vector3(1, 1, 1)

Readonly shape

shape: Shape

Readonly stage

stage: Stage

stage object the component belongs to

transform

transform: Matrix4 = new Matrix4()

Readonly uuid

uuid: string

Readonly viewer

viewer: Viewer

Accessors

backendOnly

  • get backendOnly(): boolean

defaultParameters

  • get defaultParameters(): { backendOnly: boolean; locked: boolean; name: string; status: string; visible: boolean }
  • Returns { backendOnly: boolean; locked: boolean; name: string; status: string; visible: boolean }

    • backendOnly: boolean

      Used for determining whether the component should have its properties visualized on UI or not.

      remark

      Catana extension

    • locked: boolean

      Flag determining whether this component will ignore transformations or not.

      remark

      Catana extension

    • name: string
    • status: string
    • visible: boolean

locked

  • get locked(): boolean

name

  • get name(): string

status

  • get status(): string

type

  • get type(): string

visible

  • get visible(): boolean

Methods

Protected _addRepresentation

addAnnotation

addBufferRepresentation

  • addBufferRepresentation(buffer: any, params: any): any

addRepresentation

autoView

  • autoView(duration?: undefined | number): void

dispose

  • dispose(): void

eachAnnotation

  • eachAnnotation(callback: (a: Annotation) => void): void

eachRepresentation

getBox

  • getBox(...args: any[]): Box3

getBoxUntransformed

  • getBoxUntransformed(): Box3

getCenter

  • getCenter(...args: any[]): Vector3

getCenterUntransformed

  • getCenterUntransformed(): Vector3

getZoom

  • getZoom(...args: any[]): number

hasObject

  • hasObject(object: any): boolean

hasRepresentation

localToWorldDirection

  • localToWorldDirection(dir: Vector3): Vector3

localToWorldPosition

  • localToWorldPosition(pos: Vector3): Vector3

onUpdate

  • onUpdate(delta: number): void

rebuildRepresentations

  • rebuildRepresentations(): void

removeAllAnnotations

  • removeAllAnnotations(): void

removeAllRepresentations

  • removeAllRepresentations(): void

removeAnnotation

removeRepresentation

requestRepresentationsRebuild

  • requestRepresentationsRebuild(): void

requestRepresentationsUpdate

  • requestRepresentationsUpdate(): void

setLocked

setName

setPosition

  • setPosition(p: [number, number, number] | Vector3): this

setRotation

  • setRotation(r: [number, number, number] | Euler | Quaternion): this
  • Set local rotation transform (for global rotation use setTransform)

    example

    // rotate by 2 degree radians on x axis component.setRotation( [ 2, 0, 0 ] );

    Parameters

    • r: [number, number, number] | Euler | Quaternion

      the rotation

    Returns this

    this object

setScale

  • setScale(s: number): this

setStatus

setTransform

  • setTransform(m: Matrix4): this

setVisibility

  • setVisibility(value: boolean): this

supportsColorScheme

  • supportsColorScheme(scheme: any): boolean

updateMatrix

  • updateMatrix(): void

updateRepresentationMatrices

  • updateRepresentationMatrices(): void

updateRepresentations

  • updateRepresentations(what: any): void

Object literals

Readonly signals

signals: object

Events emitted by the component

disposed

disposed: Signal<T> = new Signal()

lockedChanged

lockedChanged: Signal<T> = new Signal()

matrixChanged

matrixChanged: Signal<T> = new Signal()

nameChanged

nameChanged: Signal<T> = new Signal()

representationAdded

representationAdded: Signal<T> = new Signal()

representationRemoved

representationRemoved: Signal<T> = new Signal()

statusChanged

statusChanged: Signal<T> = new Signal()

visibilityChanged

visibilityChanged: Signal<T> = new Signal()

Generated using TypeDoc