Uses of Class
gov.nasa.worldwind.util.VecBuffer
-
Packages that use VecBuffer Package Description gov.nasa.worldwind.render gov.nasa.worldwind.util -
-
Uses of VecBuffer in gov.nasa.worldwind.render
Methods in gov.nasa.worldwind.render with parameters of type VecBuffer Modifier and Type Method Description protected java.util.List<double[]>
SurfacePolygons. computeDateLineCrossingPoints(VecBuffer vecBuffer)
protected boolean
SurfacePolylines. tessellatePart(com.jogamp.opengl.GL2 gl, VecBuffer vecBuffer, LatLon referenceLocation)
protected boolean
SurfacePolygons. tessellateRing(com.jogamp.opengl.glu.GLUtessellator tess, VecBuffer vecBuffer, LatLon referenceLocation)
-
Uses of VecBuffer in gov.nasa.worldwind.util
Fields in gov.nasa.worldwind.util declared as VecBuffer Modifier and Type Field Description protected VecBuffer
VecBufferSequence. buffer
Methods in gov.nasa.worldwind.util that return VecBuffer Modifier and Type Method Description VecBuffer
VecBuffer. copyOf(int newSize)
Returns a copy of this VecBuffer with the specified new size.protected abstract VecBuffer
CompoundVecBuffer. createSubBuffer(int offset, int length)
protected VecBuffer
CompoundVecBuffer.EmptyCompoundVecBuffer. createSubBuffer(int offset, int length)
protected VecBuffer
VecBufferBlocks. createSubBuffer(int offsetInBytes, int lengthInBytes)
protected VecBuffer
VecBufferSequence. createSubBuffer(int offset, int length)
static VecBuffer
VecBuffer. emptyVecBuffer(int coordsPerVec)
Returns the empty VecBuffer.VecBuffer
VecBuffer. getSubBuffer(int position, int size)
Returns a new VecBuffer which is a subsequence of this buffer.VecBuffer
VecBufferSequence. getVecBuffer()
Returns the VecBuffer that stores this PackedCompoundVecBuffer's sub-buffers.VecBuffer
CompoundVecBuffer. subBuffer(int index)
Returns the sub-buffer at the specified index as aVecBuffer
.Methods in gov.nasa.worldwind.util with parameters of type VecBuffer Modifier and Type Method Description int
VecBufferSequence. append(VecBuffer buffer)
Appends the contents of the specified sub-buffer to the end of this PackedCompoundVecBuffer, incrementing the number of sub-buffers by one.void
VecBuffer. putSubBuffer(int position, VecBuffer buffer)
Sets a subsequence of this buffer with the contents of the specified buffer.void
VecBuffer. putSubBuffer(int position, VecBuffer buffer, int offset, int size)
Sets a subsequence of this buffer with the contents of the specified buffer.Constructors in gov.nasa.worldwind.util with parameters of type VecBuffer Constructor Description VecBufferSequence(VecBuffer buffer)
Constructs a PackedCompoundVecBuffer with the specified backing VecBuffer and the default initial capacity.VecBufferSequence(VecBuffer buffer, int capacity)
Constructs a PackedCompoundVecBuffer with the specified backing VecBuffer and the specified initial capacity.
-