Uses of Class
com.aspose.threed.DrawOperation
-
-
Uses of DrawOperation in com.aspose.threed
Methods in com.aspose.threed that return DrawOperation Modifier and Type Method Description DrawOperation
ManualEntity. getDrawOperation()
Gets the draw operation to specify what primitive type to render.static DrawOperation
DrawOperation. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DrawOperation[]
DrawOperation. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.aspose.threed with parameters of type DrawOperation Modifier and Type Method Description void
Renderer. draw(DrawOperation drawOperation, IVertexBuffer vertexBuffer)
Draw geometry defined in verticesabstract void
Renderer. draw(DrawOperation drawOperation, IVertexBuffer vertexBuffer, int first, int count)
Draw geometry defined in verticesvoid
Renderer. drawIndexed(DrawOperation drawOperation, IVertexBuffer vertexBuffer, IIndexBuffer indexBuffer)
Draw indexed geometry.abstract void
Renderer. drawIndexed(DrawOperation drawOperation, IVertexBuffer vertexBuffer, IIndexBuffer indexBuffer, int count)
Draw indexed geometry.void
ManualEntity. setDrawOperation(DrawOperation value)
Gets the draw operation to specify what primitive type to render.Constructors in com.aspose.threed with parameters of type DrawOperation Constructor Description ManualEntity(RenderQueueGroupId renderGroup, int priority, RenderState renderState, ShaderProgram shader, IVertexBuffer vertexBuffer, IIndexBuffer indexBuffer, DrawOperation drawOperation)
Constructor ofManualEntity
ManualEntity(RenderState renderState, ShaderProgram shader, IVertexBuffer vertexBuffer, DrawOperation drawOperation)
Constructor ofManualEntity
ManualEntity(RenderState renderState, ShaderProgram shader, IVertexBuffer vertexBuffer, IIndexBuffer indexBuffer, DrawOperation drawOperation)
Constructor ofManualEntity
-