Point3DFileFormat

Description

Available formats.

Values of this enumeration:

  • STL - Stereolithography format. File name extension is .stl.
  • PLY - Polygon file format. File name extension is .ply.
  • PCD - Point cloud data file format. File name extension is .pcd.

namespace Point3DFileFormat
{
	enum Type
	{
		STL,
		PLY,
		PCD
	};
}