Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StructureComponent

Component wrapping a Structure object

example

// get a structure component by loading a structure file into the stage stage.loadFile( "rcsb://4opj" ).then( function( structureComponent ){ structureComponent.addRepresentation( "cartoon" ); structureComponent.autoView(); } );

Hierarchy

Implements

Index

Constructors

constructor

Properties

angleRepresentation

angleRepresentation: RepresentationElement

annotationList

annotationList: Annotation[] = []

controls

dihedralRepresentation

dihedralRepresentation: RepresentationElement

distanceRepresentation

distanceRepresentation: RepresentationElement

filter

filter: Filter

Optional lastPick

lastPick: undefined | number

matrix

matrix: Matrix4 = new Matrix4()

measureRepresentations

measureRepresentations: RepresentationCollection

Readonly object

object: any

Readonly parameters

pickBuffer

pickBuffer: RingBuffer<number>

pickDict

pickDict: SimpleDict<number[], number[]>

position

position: Vector3 = new Vector3()

quaternion

quaternion: Quaternion = new Quaternion()

reprList

reprList: RepresentationElement[] = []

scale

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

Readonly signals

spacefillRepresentation

spacefillRepresentation: RepresentationElement

Readonly stage

stage: Stage

stage object the component belongs to

Readonly structure

structure: Structure

structureView

structureView: StructureView

Readonly trajList

trajList: TrajectoryElement[] = []

transform

transform: Matrix4 = new Matrix4()

Readonly uuid

uuid: string

Readonly viewer

viewer: Viewer

Accessors

backendOnly

  • get backendOnly(): boolean

defaultParameters

  • get defaultParameters(): { defaultAssembly: string; filt: string } & { backendOnly: boolean; locked: boolean; 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

addMeasurement

  • addMeasurement(atomList: number[]): void

addRepresentation

  • addRepresentation<K>(type: K, params?: Partial<StructureRepresentationParametersMap[K]> | { defaultAssembly: string }, hidden?: boolean): RepresentationElement

addTrajectory

autoView

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

dispose

  • dispose(): void

eachAnnotation

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

eachRepresentation

getBox

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

getBoxUntransformed

  • getBoxUntransformed(filt: string): Box3

getCenter

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

getCenterUntransformed

  • getCenterUntransformed(filt: string): Vector3

getMaxRepresentationRadius

  • getMaxRepresentationRadius(atomIndex: number): number

getZoom

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

hasObject

  • hasObject(object: any): boolean

hasRepresentation

Private initFiltering

  • initFiltering(filt: string): void

localToWorldDirection

  • localToWorldDirection(dir: Vector3): Vector3

localToWorldPosition

  • localToWorldPosition(pos: Vector3): Vector3

measureBuild

  • measureBuild(): void

measureClear

  • measureClear(): void

measureData

  • measureData(): { angle: number[][]; dihedral: number[][]; distance: number[][] }

measurePick

measureUpdate

  • measureUpdate(): void

onUpdate

  • onUpdate(delta: number): void

propagateTransfToElems

  • propagateTransfToElems(): void

rebuildRepresentations

  • rebuildRepresentations(): void

rebuildTrajectories

  • rebuildTrajectories(): void

removeAllAnnotations

  • removeAllAnnotations(): void

removeAllMeasurements

removeAllRepresentations

  • removeAllRepresentations(): void

removeAnnotation

removeMeasurement

  • removeMeasurement(atomList: number[]): void

removeRepresentation

removeTrajectory

requestRepresentationsRebuild

  • requestRepresentationsRebuild(): void

requestRepresentationsUpdate

  • requestRepresentationsUpdate(): void

setDefaultAssembly

  • setDefaultAssembly(value: string): this

setFilter

  • setFilter(string: string): this

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

superpose

  • superpose(component: StructureComponent, align: boolean, filt1: string, filt2: string): this

supportsColorScheme

  • supportsColorScheme(scheme: any): boolean

updateMatrix

  • updateMatrix(): void

updateRepresentationMatrices

  • updateRepresentationMatrices(): void

updateRepresentations

  • updateRepresentations(what: any): void

Generated using TypeDoc