Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CgMonomerStore

Hierarchy

Indexable

[k: string]: any

Index

Constructors

constructor

Properties

_fields

_fields: StoreField[]

count

count: number

globalId

globalId: Int32Array

length

length: number

pdbId

pdbId: Int32Array

Identification/index of relevant all-atom residue; -1 if no reference exists

Accessors

_defaultFields

estimatedSizeInBytes

  • get estimatedSizeInBytes(): number

Methods

_init

  • _init(size: number): void

_initField

addField

appendRecords

  • appendRecords(addedCount: number, newValRec?: undefined | {}): void

clear

  • clear(): void

copyFrom

  • copyFrom(other: Store, thisOffset: number, otherOffset: number, length: number): void
  • Copy data from one store to another

    Parameters

    • other: Store

      store to copy from

    • thisOffset: number

      offset to start copying to

    • otherOffset: number

      offset to start copying from

    • length: number

      number of entries to copy

    Returns void

copyWithin

  • copyWithin(destinationOffset: number, sourceOffset: number, length: number): void
  • Copy data within this store

    Parameters

    • destinationOffset: number

      offset to start copying to

    • sourceOffset: number

      offset to start copying from

    • length: number

      number of entries to copy

    Returns void

dispose

  • dispose(): void

growIfFull

  • growIfFull(): void

insertRecords

  • insertRecords(index: number, addedCount: number, newValRec?: undefined | {}): void
  • Allows to add values to the store fields simultaneously. It is expected that all of the fields provided by the store will have their value defined in the newly added record and all the arrays with values are of the same length.

    Parameters

    • index: number

      index where the data should be inserted

    • addedCount: number
    • Optional newValRec: undefined | {}

      defines the values to add; if not provided, the store will be resized but no values will be overriden

      Catana extension.

    Returns void

prependRecords

  • prependRecords(addedCount: number, newValRec?: undefined | {}): void

removeRecord

  • removeRecord(index: number): void

resize

  • resize(size?: undefined | number): void

rotate

  • rotate(shift: number): void
  • Left-rotates the array with the given shift in the desired direction In-situ algorithm

    Catana extension

    Parameters

    • shift: number

    Returns void

shrinkToFit

  • shrinkToFit(): void

sort

  • sort(compareFunction: (a: any, b: any) => number): void
  • Sort entries in the store given the compare function

    Parameters

    • compareFunction: (a: any, b: any) => number

      function to sort by

        • (a: any, b: any): number
        • Parameters

          • a: any
          • b: any

          Returns number

    Returns void

Protected vectorDataFromArray

  • vectorDataFromArray(dataArr: Float32Array, i: number, sourceArr: number[]): void
  • Stores [X, Y, Z] values stored in the source array to the corresponding index in the store's destination array

    Parameters

    • dataArr: Float32Array

      destionation array

    • i: number

      index where the data should be stored

    • sourceArr: number[]

      source array

    Returns void

Protected vectorDataFromVector3

  • vectorDataFromVector3(dataArr: Float32Array, i: number, source: Vector3): void
  • Stores [X, Y, Z] values stored in the source vector to the corresponding index in the store's destination array

    Parameters

    • dataArr: Float32Array

      destionation array

    • i: number

      index where the data should be stored

    • source: Vector3

      source vector

    Returns void

Protected vectorDataToArray

  • vectorDataToArray(dataArr: Float32Array, i: number, destArr?: number[]): number[]
  • Copies [X, Y, Z] values stored at the given index in the source store's array to the destination array (if provided)

    Parameters

    • dataArr: Float32Array

      source array

    • i: number

      index from which the data should be copied

    • Optional destArr: number[]

      destination array (if not provided, new array of size 3 will be initialized)

    Returns number[]

    reference to destArray if provided, otherwise reference to newly created array

Protected vectorDataToVector3

  • vectorDataToVector3(dataArr: Float32Array, i: number, vector?: Vector3): Vector3
  • Copies [X, Y, Z] values stored at the given index in the source store's array to the destination vector (if provided)

    Parameters

    • dataArr: Float32Array

      source array

    • i: number

      index from which the data should be copied

    • Optional vector: Vector3

      destionation vector (if not provided, new vector will be instantiated)

    Returns Vector3

    reference to vector param if provided, otherwise reference to a newly created vector instance

Generated using TypeDoc