Uses of Interface
com.aspose.threed.IVertexBuffer
-
-
Uses of IVertexBuffer in com.aspose.threed
Methods in com.aspose.threed that return IVertexBuffer Modifier and Type Method Description abstract IVertexBuffer
RenderFactory. createVertexBuffer(VertexDeclaration declaration)
Create anIVertexBuffer
instance to store polygon's vertex information.IVertexBuffer
ManualEntity. getVertexBuffer()
Gets the vertex buffer.Methods in com.aspose.threed with parameters of type IVertexBuffer 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. setVertexBuffer(IVertexBuffer value)
Gets the vertex buffer.Constructors in com.aspose.threed with parameters of type IVertexBuffer 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
-