Package boofcv.io.points.impl
Interface PlyReader
public interface PlyReader
Generic interface for accessing data used to read PLY files
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addPolygon
(int[] indexes, int offset, int length) void
addVertex
(double x, double y, double z, int rgb) void
initialize
(int vertexes, int triangles, boolean color)
-
Method Details
-
initialize
void initialize(int vertexes, int triangles, boolean color) -
addVertex
void addVertex(double x, double y, double z, int rgb) -
addPolygon
void addPolygon(int[] indexes, int offset, int length)
-