Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BufferCreator

The purpose of this class is to provide a wrapper to selected NGL buffers allowing to create given geometries in a more accessible way.

Hierarchy

  • BufferCreator

Index

Properties

Static Readonly defaultArrowBufferParams

defaultArrowBufferParams: Partial<ArrowBufferParameters> = ArrowBufferDefaultParameters

Static Readonly defaultBoxBufferParams

defaultBoxBufferParams: Partial<BufferParameters> = BufferDefaultParameters

Static Readonly defaultConeBufferParams

defaultConeBufferParams: Partial<ConeBufferParameters> = ConeBufferDefaultParameters

Static Readonly defaultCylinderBufferParams

defaultCylinderBufferParams: Partial<CylinderBufferParameters> = Object.assign(CylinderBufferDefaultParameters, {radialSegments: 8})

Static Readonly defaultRibbonBufferParams

defaultRibbonBufferParams: Partial<BufferParameters> = BufferDefaultParameters

Static Readonly defaultTextBufferParams

defaultTextBufferParams: Partial<TextBufferParameters> = TextBufferDefaultParameters

Static Readonly defaultTubeMeshBufferParams

defaultTubeMeshBufferParams: Partial<TubeMeshBufferParameters> = Object.assign(BufferDefaultParameters, {radialSegments: 8,capped: true,aspectRatio: 1.0})

Static Readonly defaultWidelineBufferParams

defaultWidelineBufferParams: Partial<WideLineBufferParameters> = WideLineBufferDefaultParameters

Methods

Static createArrowBufferFromArrays

  • createArrowBufferFromArrays(position1: Float32Array, position2: Float32Array, color: Float32Array, radius: Float32Array, picking: Picker | undefined, index: Uint32Array | undefined, opacity?: number | undefined, params?: Partial<ArrowBufferParameters>): ArrowBuffer
  • Creates arrow buffer representing multiple arrows.

    remark

    Arrow Buffer does not inherit from Buffer!

    Parameters

    • position1: Float32Array

      starting positions of arrows

    • position2: Float32Array

      ending positions (tips) of arrows

    • color: Float32Array

      arrow colors

    • radius: Float32Array

      radii of arrows

    • picking: Picker | undefined

      picker instance

    • index: Uint32Array | undefined

      TODO not sure

    • Default value opacity: number | undefined = undefined

      opacity of the arrows

    • Default value params: Partial<ArrowBufferParameters> = this.defaultArrowBufferParams

      additional arrow buffer parameters

    Returns ArrowBuffer

    arrow buffer instance

Static createBoxBufferFromArrays

  • createBoxBufferFromArrays(position: Float32Array, color: Float32Array, heightAxis: Float32Array, depthAxis: Float32Array, size: Float32Array, picking: Picker | undefined, params?: Partial<BufferParameters>): BoxBuffer
  • Creates box buffer representing multiple boxes.

    Parameters

    • position: Float32Array

      centroids of each box

    • color: Float32Array

      colors of boxes

    • heightAxis: Float32Array

      height (axis) of each box

    • depthAxis: Float32Array

      depth (axis) of each box

    • size: Float32Array

      size (width) of each box

    • picking: Picker | undefined

      picker instance

    • Default value params: Partial<BufferParameters> = this.defaultBoxBufferParams

      additional box buffer parameters

    Returns BoxBuffer

    box buffer instance

Static createConeBufferFromArrays

  • createConeBufferFromArrays(position1: Float32Array, position2: Float32Array, color: Float32Array, color2: Float32Array | undefined, radius: Float32Array, picking: Picker | undefined, index: Uint32Array | undefined, opacity?: number | undefined, params?: Partial<ConeBufferParameters>): Buffer
  • Creates cone buffer representing multiple cones.

    Parameters

    • position1: Float32Array

      starting positions of cones

    • position2: Float32Array

      ending positions of cones

    • color: Float32Array

      cone start colors

    • color2: Float32Array | undefined

      cone end colors

    • radius: Float32Array

      radii of cones

    • picking: Picker | undefined

      picker instance

    • index: Uint32Array | undefined

      TODO not sure

    • Default value opacity: number | undefined = undefined

      opacity of cones

    • Default value params: Partial<ConeBufferParameters> = this.defaultConeBufferParams

      additional cone parameters

    Returns Buffer

    cone buffer instance

Static createCylinderBuffer

  • createCylinderBuffer(startPos: Vector3, endPos: Vector3, startColor: Vector3, endColor: Vector3, radius: number, openEnded?: boolean, disableImpostor?: boolean, params?: Partial<CylinderBufferParameters>): Buffer
  • Creates cylinder buffer representing a single cylinder.

    Parameters

    • startPos: Vector3

      cylinder start position

    • endPos: Vector3

      cylinder end position

    • startColor: Vector3

      cylinder start color

    • endColor: Vector3

      cylinder end color

    • radius: number

      radius of the cylinder

    • Default value openEnded: boolean = false

      is the cylinder open ended (no face on top & bottom) or not

    • Default value disableImpostor: boolean = false

      should rendering using impostors be disabled or not

    • Default value params: Partial<CylinderBufferParameters> = this.defaultCylinderBufferParams

      additional cylinder parameters

    Returns Buffer

    cylinder buffer instance

Static createCylinderPairsBuffer

  • createCylinderPairsBuffer(vertices: Vector3[], colors: Vector3[], radiuses: number[], openEnded?: boolean, disableImpostor?: boolean, params?: Partial<CylinderBufferParameters>): Buffer
  • Creates cylinder buffer representing multiple cylinders (~ GL_LINES style).

    Parameters

    • vertices: Vector3[]

      positions of the cylinders' points

    • colors: Vector3[]

      colors of the cylinders' points

    • radiuses: number[]

      radiuses of the cylinders. |vertices| === |colors| === |radiuses*2|

    • Default value openEnded: boolean = false

      should the cylinders be open-ended

    • Default value disableImpostor: boolean = false

      should the impostor rendering be disabled for cylinders

    • Default value params: Partial<CylinderBufferParameters> = this.defaultCylinderBufferParams

      additional cylinder buffer parameters

    Returns Buffer

    instance of cylinder buffer

Static createCylinderStripBuffer

  • createCylinderStripBuffer(vertices: Vector3[], colors: Vector3[], radiuses: number[], pickingIds?: number[], pickingCreator?: undefined | ((idsArr: number[]) => Picker), openEnded?: boolean, disableImpostor?: boolean, opacity?: number, params?: Partial<CylinderBufferParameters>): Buffer
  • Creates cylinder buffer representing multiple cylinder strips (~ GL_LINE_STRIP style).

    Parameters

    • vertices: Vector3[]

      positions of the cylinders' points

    • colors: Vector3[]

      colors of the cylinders' points

    • radiuses: number[]

      radiuses of the cylinders. |vertices| === |colors| === |radiuses+1|

    • Optional pickingIds: number[]

      picking indices of the cylinders

    • Optional pickingCreator: undefined | ((idsArr: number[]) => Picker)

      callback creating picker instance for given ids

    • Default value openEnded: boolean = false

      should the cylinders be open-ended

    • Default value disableImpostor: boolean = false

      should the impostor rendering be disabled for cylinders

    • Default value opacity: number = 1

      opacity of the cylinders

    • Default value params: Partial<CylinderBufferParameters> = this.defaultCylinderBufferParams

      additional cylinder buffer parameters

    Returns Buffer

    instance of cylinder buffer

Static createCylinderStripBufferFromArrays

  • Creates cylinder buffer representing multiple cylinders.

    Parameters

    • position1: Float32Array

      starting positions of cylinders

    • position2: Float32Array

      ending positions of cylinders

    • color: Float32Array

      starting colors of cylinders

    • color2: Float32Array

      ending colors of cylinders

    • radius: Float32Array

      radii of cylinders

    • Optional picking: Picker

      picker instance

    • Default value openEnded: boolean = false

      should cylinders be open-ended

    • Default value disableImpostor: boolean = false

      should the impostor rendering be disabled

    • Default value opacity: number = 1

      opacity of the cylinders

    • Default value params: Partial<CylinderBufferParameters> = this.defaultCylinderBufferParams

      additional cylinder buffer parameters

    Returns CylinderImpostorBuffer | CylinderGeometryBuffer

    instance of cylinder buffer

Static createRibbonBuffer

  • createRibbonBuffer(pathElemPositions: Vector3[], pathElemSizes: number[], pathElemColors: Vector3[], interpolationSubdivisions?: number, params?: Partial<BufferParameters>): Buffer
  • Creates ribbon buffer, using Hermit interpolation for the subdivisions.

    remarks

    If you want to create buffer for structural data (e.g. Structure/CgStructure), use Spline classes instead as they work much better.

    Parameters

    • pathElemPositions: Vector3[]

      positions of the elements along the ribbon

    • pathElemSizes: number[]

      sizes of elements along the ribbon

    • pathElemColors: Vector3[]

      colors of elements along the ribbon

    • Default value interpolationSubdivisions: number = 1

      number of subdivisions, i.e., the number of additional points to be added between every neighbouring elements

    • Default value params: Partial<BufferParameters> = this.defaultRibbonBufferParams

      ribbon buffer parameters

    Returns Buffer

    instance of the buffer

Static createRibbonBufferUniformParams

  • createRibbonBufferUniformParams(pathElemPositions: Vector3[], elemsSize: number, elemsColor: Vector3, interpolationSubdivisions?: number, params?: Partial<TubeMeshBufferParameters>): Buffer
  • Creates ribbon buffer, using Hermit interpolation for the subdivisions.

    remarks

    If you want to create buffer for structural data (e.g. Structure/CgStructure), use Spline classes instead as they work much better.

    Parameters

    • pathElemPositions: Vector3[]

      positions of the elements along the ribbon

    • elemsSize: number

      size of elements along the ribbon

    • elemsColor: Vector3
    • Default value interpolationSubdivisions: number = 1

      number of subdivisions, i.e., the number of additional points to be added between every neighbouring elements

    • Default value params: Partial<TubeMeshBufferParameters> = this.defaultRibbonBufferParams

      ribbon buffer parameters

    Returns Buffer

    instance of the buffer

Static createSphereBufferFromArrays

  • Creates sphere buffer representing multiple spheres.

    Parameters

    • position: Float32Array

      positions of spheres' centers

    • color: Float32Array

      colors of spheres

    • radius: Float32Array

      radii of spheres

    • picking: Picker | undefined

      picker instance

    • Default value openEnded: boolean = false

      TODO WILL BE DELETED LATER

    • Default value disableImpostor: boolean = false

      should impostors be disabled

    • Default value params: Partial<CylinderBufferParameters> = this.defaultCylinderBufferParams

      additional buffer parameters

    Returns SphereImpostorBuffer | SphereGeometryBuffer

    buffer instance

Static createTextBuffer

  • Creates text buffer representing a single 3D text element.

    Parameters

    • position: Vector3

      position of the text

    • color: Vector3

      text color

    • size: number

      size of the text/font

    • text: string

      text to be shown

    • Default value params: Partial<TextBufferParameters> = this.defaultTextBufferParams

      additional text buffer parameters

    Returns Buffer

    text buffer instance

Static createTextBufferFromArrays

  • Creates text buffer representing multiple 3D text elements.

    Parameters

    • position: Float32Array

      positions of the text elements

    • color: Float32Array

      colors of the text elements

    • size: Float32Array

      sizes of the text elements

    • text: string[]

      texts to be shown

    • Default value params: Partial<TextBufferParameters> = this.defaultTextBufferParams

      additional text buffer parameters

    Returns Buffer

    text buffer instance

Static createTubeMeshBuffer

  • createTubeMeshBuffer(pathElemPositions: Vector3[], pathElemSizes: number[], pathElemColors: Vector3[], interpolationSubdivisions?: number, params?: Partial<TubeMeshBufferParameters>): Buffer
  • Creates tube mesh buffer, using Hermit interpolation for the subdivisions.

    remarks

    If you want to create buffer for structural data (e.g. Structure/CgStructure), use Spline classes instead as they work much better.

    Parameters

    • pathElemPositions: Vector3[]

      positions of the elements along the tube

    • pathElemSizes: number[]

      sizes of elements along the tube

    • pathElemColors: Vector3[]

      colors of elements along the tube

    • Default value interpolationSubdivisions: number = 1

      number of subdivisions, i.e., the number of additional points to be added between every neighbouring elements

    • Default value params: Partial<TubeMeshBufferParameters> = this.defaultTubeMeshBufferParams

      tube mesh buffer parameters

    Returns Buffer

    instance of the buffer

Static createTubeMeshBufferUniformParams

  • createTubeMeshBufferUniformParams(pathElemPositions: Vector3[], elemsSize: number, elemsColor: Vector3, interpolationSubdivisions?: number, params?: Partial<TubeMeshBufferParameters>): Buffer
  • Creates tube mesh buffer, using Hermit interpolation for the subdivisions.

    remarks

    If you want to create buffer for structural data (e.g. Structure/CgStructure), use Spline classes instead as they work much better.

    Parameters

    • pathElemPositions: Vector3[]

      positions of the elements along the tube

    • elemsSize: number

      size of elements along the tube

    • elemsColor: Vector3
    • Default value interpolationSubdivisions: number = 1

      number of subdivisions, i.e., the number of additional points to be added between every neighbouring elements

    • Default value params: Partial<TubeMeshBufferParameters> = this.defaultTubeMeshBufferParams

      tube mesh buffer parameters

    Returns Buffer

    instance of the buffer

Static Private createTubeRibbonCommon

  • createTubeRibbonCommon(pathElemPositions: Vector3[], pathElemSizes: number[], pathElemColors: Vector3[], interpolationSubdivisions?: number, returnCallback: (posArray: Float32Array, normArray: Float32Array, tangArray: Float32Array, binormArray: Float32Array, colArray: Float32Array, sizeArray: Float32Array) => Buffer): Buffer
  • Parameters

    • pathElemPositions: Vector3[]
    • pathElemSizes: number[]
    • pathElemColors: Vector3[]
    • Default value interpolationSubdivisions: number = 1
    • returnCallback: (posArray: Float32Array, normArray: Float32Array, tangArray: Float32Array, binormArray: Float32Array, colArray: Float32Array, sizeArray: Float32Array) => Buffer
        • (posArray: Float32Array, normArray: Float32Array, tangArray: Float32Array, binormArray: Float32Array, colArray: Float32Array, sizeArray: Float32Array): Buffer
        • Parameters

          • posArray: Float32Array
          • normArray: Float32Array
          • tangArray: Float32Array
          • binormArray: Float32Array
          • colArray: Float32Array
          • sizeArray: Float32Array

          Returns Buffer

    Returns Buffer

Static createWideLineBuffer

  • Creates wideline buffer representing a single line between two points

    Parameters

    • startPos: Vector3

      position of the start point

    • endPos: Vector3

      position of the end point

    • startColor: Vector3

      color of the start point

    • endColor: Vector3

      color of the end point

    • lineWidth: number

      width of the line

    • Default value params: Partial<WideLineBufferParameters> = this.defaultWidelineBufferParams

      line parameters

    Returns Buffer

    instance of the buffer

Static createWideLineBufferFromArrays

  • createWideLineBufferFromArrays(position1: Float32Array, position2: Float32Array, color: Float32Array, color2: Float32Array, picking?: Picker, lineWidth?: number, params?: Partial<WideLineBufferParameters>): Buffer
  • Creates wideline buffer representing multiple lines

    Parameters

    • position1: Float32Array

      array of start XYZ positions

    • position2: Float32Array

      array of end XYZ positions

    • color: Float32Array

      array of start points colors

    • color2: Float32Array

      array of end points colors

    • Optional picking: Picker

      picker instance

    • Default value lineWidth: number = 1

      width of the lines

    • Default value params: Partial<WideLineBufferParameters> = this.defaultCylinderBufferParams

      additional wideline parameters

    Returns Buffer

    instance of the buffer

Static createWideLinePairsBuffer

  • Creates wideline buffer representing multiple lines (~ GL_LINES style). Example: A,B,C,D vertices will result in lines A-B and C-D.

    Parameters

    • vertices: Vector3[]

      list of positions of line points

    • colors: Vector3[]

      list of colors of line points

    • lineWidth: number

      width of the lines

    • Default value params: Partial<WideLineBufferParameters> = this.defaultWidelineBufferParams

      additional line parameters

    Returns Buffer

    wideline buffer instance

Static createWideLineStripBuffer

  • createWideLineStripBuffer(vertices: Vector3[], colors: Vector3[], lineWidth: number, pickingIds?: number[], pickingCreator?: undefined | ((idsArr: number[]) => Picker), params?: Partial<WideLineBufferParameters>): Buffer
  • Creates wideline buffer representing line strip (~ GL_LINE_STRIP style). Example: A,B,C,D vertices will result in lines A-B-C-D.

    Parameters

    • vertices: Vector3[]

      list of positions of line points

    • colors: Vector3[]

      list of colors of line points

    • lineWidth: number

      width of the lines

    • Optional pickingIds: number[]

      picking indices

    • Optional pickingCreator: undefined | ((idsArr: number[]) => Picker)

      function creating picker instance for given array of ids

    • Default value params: Partial<WideLineBufferParameters> = this.defaultWidelineBufferParams

      additional line parameters

    Returns Buffer

    wideline buffer instance

Generated using TypeDoc