Uses of Class
javafx.scene.shape.VertexFormat
Package | Description |
---|---|
javafx.scene.shape |
Provides the set of 2D classes for defining and performing operations on
objects related to two-dimensional geometry.
|
-
Uses of VertexFormat in javafx.scene.shape
Fields in javafx.scene.shape declared as VertexFormat Modifier and Type Field Description static VertexFormat
VertexFormat. POINT_NORMAL_TEXCOORD
Specifies the format of a vertex that consists of a point, normal and texture coordinates.static VertexFormat
VertexFormat. POINT_TEXCOORD
Specifies the format of a vertex that consists of a point and texture coordinates.Methods in javafx.scene.shape that return VertexFormat Modifier and Type Method Description VertexFormat
TriangleMesh. getVertexFormat()
Gets the value of the property vertexFormat.Methods in javafx.scene.shape that return types with arguments of type VertexFormat Modifier and Type Method Description ObjectProperty<VertexFormat>
TriangleMesh. vertexFormatProperty()
Specifies the vertex format of thisTriangleMesh
, one ofVertexFormat.POINT_TEXCOORD
orVertexFormat.POINT_NORMAL_TEXCOORD
.Methods in javafx.scene.shape with parameters of type VertexFormat Modifier and Type Method Description void
TriangleMesh. setVertexFormat(VertexFormat value)
Sets the value of the property vertexFormat.Constructors in javafx.scene.shape with parameters of type VertexFormat Constructor Description TriangleMesh(VertexFormat vertexFormat)
Creates a new instance ofTriangleMesh
class with the specifiedVertexFormat
.