Package boofcv.io.points.impl
Interface PlyWriter
public interface PlyWriter
Generic interface for accessing data used to write PLY files
-
Method Summary
Modifier and TypeMethodDescriptionintgetColor(int which) Color of a vertexintgetIndexes(int which, int[] indexes) Get the indexes of each vertex in the polygon.intvoidgetVertex(int which, Point3D_F64 vertex) intbooleanisColor()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.
-