Package boofcv.io.points.impl
Interface PlyWriter
public interface PlyWriter
Generic interface for accessing data used to write PLY files
-
Method Summary
Modifier and TypeMethodDescriptionint
getColor
(int which) Color of a vertexint
getIndexes
(int which, int[] indexes) Get the indexes of each vertex in the polygon.int
void
getVertex
(int which, Point3D_F64 vertex) int
boolean
isColor()
True if a vertex has color information or not
-
Method Details
-
getVertexCount
int getVertexCount() -
getPolygonCount
int getPolygonCount() -
isColor
boolean isColor()True if a vertex has color information or not -
getVertex
-
getColor
int getColor(int which) Color of a vertex -
getIndexes
int getIndexes(int which, int[] indexes) Get the indexes of each vertex in the polygon. Returns the number of vertexes.
-