Interface ILspMutableVertexArray
- All Superinterfaces:
ILspVertexArray
Represents a vertex array for which the data is subject to change.
This change is indicated by a dirty flag, which will specify if the vertex array should
be rebuilt or not.
Note that vertex arrays should only be changed after acquiring the necessary
lock
.
- Since:
- 2012.0
-
Method Summary
Methods inherited from interface com.luciad.view.lightspeed.services.vertexarray.ILspVertexArray
getCoordinateOrigin, getData, getData, getSize, getVertexAttribute, getVertexAttributeCount, hasVertexAttribute, lock, unlock
-
Method Details
-
isDirty
boolean isDirty()Checks whether or not this vertex array should be rebuilt.- Returns:
true
if this vertex array should be rebuilt,false
otherwise
-
setDirty
void setDirty(boolean aDirty) Sets the dirty flag of this vertex array to the given value.- Parameters:
aDirty
- the new value of this vertex array's dirty flag
-