Package | Description |
---|---|
gov.nasa.worldwind.render | |
gov.nasa.worldwind.util |
Modifier and Type | Method and Description |
---|---|
protected java.util.List<double[]> |
SurfacePolygons.computeDateLineCrossingPoints(VecBuffer vecBuffer) |
protected boolean |
SurfacePolylines.tessellatePart(GL2 gl,
VecBuffer vecBuffer,
LatLon referenceLocation) |
protected boolean |
SurfacePolygons.tessellateRing(GLUtessellator tess,
VecBuffer vecBuffer,
LatLon referenceLocation) |
Modifier and Type | Field and Description |
---|---|
protected VecBuffer |
VecBufferSequence.buffer |
Modifier and Type | Method and Description |
---|---|
VecBuffer |
VecBuffer.copyOf(int newSize)
Returns a copy of this VecBuffer with the specified new size.
|
protected VecBuffer |
VecBufferSequence.createSubBuffer(int offset,
int length) |
protected VecBuffer |
VecBufferBlocks.createSubBuffer(int offsetInBytes,
int lengthInBytes) |
protected abstract VecBuffer |
CompoundVecBuffer.createSubBuffer(int offset,
int length) |
protected VecBuffer |
CompoundVecBuffer.EmptyCompoundVecBuffer.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 a
VecBuffer . |
Modifier and Type | Method and 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.
|
Constructor and 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.
|