2021SC@SDUSC
Geometry.h
注释中文部分是源码解读,分析和问题在源码之后
#include <string>
namespace open3d {
namespace geometry {
//几何学类geometry class.
class Geometry {
public:
指定可能的几何图形类型。
enum class GeometryType {
//未指定的几何体类型。
Unspecified = 0,
//点云
PointCloud = 1,
//网格
VoxelGrid = 2,
//八叉树
Octree = 3,
//线路设置