Package gaia.cu9.ari.gaiaorbit.render
Interface IGPUVertsRenderable
-
- All Superinterfaces:
IRenderable
- All Known Implementing Classes:
EclipticOrbit
,HeliotropicOrbit
,KeyframesPathObject
,Orbit
,Points
,Polyline
,VertsObject
public interface IGPUVertsRenderable extends IRenderable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
blend()
void
depth()
double
getAlpha()
float[]
getColor()
int
getCount()
com.badlogic.gdx.math.Matrix4
getLocalTransform()
int
getOffset()
SceneGraphNode
getParent()
PointCloudData
getPointCloud()
float
getPrimitiveSize()
boolean
inGpu()
boolean
isClosedLoop()
void
markForUpdate()
void
setClosedLoop(boolean closedLoop)
void
setCount(int count)
void
setInGpu(boolean inGpu)
void
setOffset(int offset)
void
setPrimitiveSize(float size)
Line width for lines, point size for points-
Methods inherited from interface gaia.cu9.ari.gaiaorbit.render.IRenderable
getComponentType, getDistToCamera, getOpacity
-
-
-
-
Method Detail
-
inGpu
boolean inGpu()
-
markForUpdate
void markForUpdate()
-
getOffset
int getOffset()
-
getCount
int getCount()
-
getPointCloud
PointCloudData getPointCloud()
-
getColor
float[] getColor()
-
getAlpha
double getAlpha()
-
getLocalTransform
com.badlogic.gdx.math.Matrix4 getLocalTransform()
-
getParent
SceneGraphNode getParent()
-
setInGpu
void setInGpu(boolean inGpu)
-
setOffset
void setOffset(int offset)
-
setCount
void setCount(int count)
-
isClosedLoop
boolean isClosedLoop()
-
setClosedLoop
void setClosedLoop(boolean closedLoop)
-
blend
void blend()
-
depth
void depth()
-
setPrimitiveSize
void setPrimitiveSize(float size)
Line width for lines, point size for points- Parameters:
size
- The size
-
getPrimitiveSize
float getPrimitiveSize()
-
-