Creates arrow buffer representing multiple arrows.
starting positions of arrows
ending positions (tips) of arrows
arrow colors
radii of arrows
picker instance
TODO not sure
opacity of the arrows
additional arrow buffer parameters
arrow buffer instance
Creates box buffer representing multiple boxes.
centroids of each box
colors of boxes
height (axis) of each box
depth (axis) of each box
size (width) of each box
picker instance
additional box buffer parameters
box buffer instance
Creates cone buffer representing multiple cones.
starting positions of cones
ending positions of cones
cone start colors
cone end colors
radii of cones
picker instance
TODO not sure
opacity of cones
additional cone parameters
cone buffer instance
Creates cylinder buffer representing a single cylinder.
cylinder start position
cylinder end position
cylinder start color
cylinder end color
radius of the cylinder
is the cylinder open ended (no face on top & bottom) or not
should rendering using impostors be disabled or not
additional cylinder parameters
cylinder buffer instance
Creates cylinder buffer representing multiple cylinders (~ GL_LINES style).
positions of the cylinders' points
colors of the cylinders' points
radiuses of the cylinders. |vertices| === |colors| === |radiuses*2|
should the cylinders be open-ended
should the impostor rendering be disabled for cylinders
additional cylinder buffer parameters
instance of cylinder buffer
Creates cylinder buffer representing multiple cylinder strips (~ GL_LINE_STRIP style).
positions of the cylinders' points
colors of the cylinders' points
radiuses of the cylinders. |vertices| === |colors| === |radiuses+1|
picking indices of the cylinders
callback creating picker instance for given ids
should the cylinders be open-ended
should the impostor rendering be disabled for cylinders
opacity of the cylinders
additional cylinder buffer parameters
instance of cylinder buffer
Creates cylinder buffer representing multiple cylinders.
starting positions of cylinders
ending positions of cylinders
starting colors of cylinders
ending colors of cylinders
radii of cylinders
picker instance
should cylinders be open-ended
should the impostor rendering be disabled
opacity of the cylinders
additional cylinder buffer parameters
instance of cylinder buffer
Creates ribbon buffer, using Hermit interpolation for the subdivisions.
positions of the elements along the ribbon
sizes of elements along the ribbon
colors of elements along the ribbon
number of subdivisions, i.e., the number of additional points to be added between every neighbouring elements
ribbon buffer parameters
instance of the buffer
Creates ribbon buffer, using Hermit interpolation for the subdivisions.
positions of the elements along the ribbon
size of elements along the ribbon
number of subdivisions, i.e., the number of additional points to be added between every neighbouring elements
ribbon buffer parameters
instance of the buffer
Creates sphere buffer representing multiple spheres.
positions of spheres' centers
colors of spheres
radii of spheres
picker instance
TODO WILL BE DELETED LATER
should impostors be disabled
additional buffer parameters
buffer instance
Creates text buffer representing a single 3D text element.
position of the text
text color
size of the text/font
text to be shown
additional text buffer parameters
text buffer instance
Creates text buffer representing multiple 3D text elements.
positions of the text elements
colors of the text elements
sizes of the text elements
texts to be shown
additional text buffer parameters
text buffer instance
Creates tube mesh buffer, using Hermit interpolation for the subdivisions.
positions of the elements along the tube
sizes of elements along the tube
colors of elements along the tube
number of subdivisions, i.e., the number of additional points to be added between every neighbouring elements
tube mesh buffer parameters
instance of the buffer
Creates tube mesh buffer, using Hermit interpolation for the subdivisions.
positions of the elements along the tube
size of elements along the tube
number of subdivisions, i.e., the number of additional points to be added between every neighbouring elements
tube mesh buffer parameters
instance of the buffer
Creates wideline buffer representing a single line between two points
position of the start point
position of the end point
color of the start point
color of the end point
width of the line
line parameters
instance of the buffer
Creates wideline buffer representing multiple lines
array of start XYZ positions
array of end XYZ positions
array of start points colors
array of end points colors
picker instance
width of the lines
additional wideline parameters
instance of the buffer
Creates wideline buffer representing multiple lines (~ GL_LINES style). Example: A,B,C,D vertices will result in lines A-B and C-D.
list of positions of line points
list of colors of line points
width of the lines
additional line parameters
wideline buffer instance
Creates wideline buffer representing line strip (~ GL_LINE_STRIP style). Example: A,B,C,D vertices will result in lines A-B-C-D.
list of positions of line points
list of colors of line points
width of the lines
picking indices
function creating picker instance for given array of ids
additional line parameters
wideline buffer instance
Generated using TypeDoc
The purpose of this class is to provide a wrapper to selected NGL buffers allowing to create given geometries in a more accessible way.