Package com.jogamp.graph.geom
Class SVertex.Factory
- java.lang.Object
-
- com.jogamp.graph.geom.SVertex.Factory
-
- All Implemented Interfaces:
Vertex.Factory<SVertex>
- Enclosing class:
- SVertex
public static class SVertex.Factory extends Object implements Vertex.Factory<SVertex>
-
-
Constructor Summary
Constructors Constructor Description Factory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SVertexcreate()SVertexcreate(float[] coordsBuffer, int offset, int length, boolean onCurve)SVertexcreate(float x, float y, float z, boolean onCurve)SVertexcreate(int id, boolean onCurve, float[] texCoordsBuffer)SVertexcreate(Vertex src)
-
-
-
Method Detail
-
create
public SVertex create()
- Specified by:
createin interfaceVertex.Factory<SVertex>
-
create
public SVertex create(Vertex src)
- Specified by:
createin interfaceVertex.Factory<SVertex>
-
create
public SVertex create(int id, boolean onCurve, float[] texCoordsBuffer)
- Specified by:
createin interfaceVertex.Factory<SVertex>
-
create
public SVertex create(float x, float y, float z, boolean onCurve)
- Specified by:
createin interfaceVertex.Factory<SVertex>
-
create
public SVertex create(float[] coordsBuffer, int offset, int length, boolean onCurve)
- Specified by:
createin interfaceVertex.Factory<SVertex>
-
-