|
enum class | TextureInterpolationOption { Nearest = 0
, Linear = 1
} |
|
enum class | DepthFunc {
Never = 0
, Less = 1
, Equal = 2
, LEqual = 3
,
Greater = 4
, NotEqual = 5
, GEqual = 6
, Always = 7
} |
|
enum class | PointColorOption {
Default = 0
, Color = 1
, XCoordinate = 2
, YCoordinate = 3
,
ZCoordinate = 4
, Normal = 9
} |
| Enum class for point color for PointCloud. More...
|
|
enum class | MeshShadeOption { FlatShade = 0
, SmoothShade = 1
} |
| Enum class for mesh shading for TriangleMesh. More...
|
|
enum class | MeshColorOption {
Default = 0
, Color = 1
, XCoordinate = 2
, YCoordinate = 3
,
ZCoordinate = 4
, Normal = 9
} |
| Enum class for color for TriangleMesh. More...
|
|
enum class | ImageStretchOption { OriginalSize = 0
, StretchKeepRatio = 1
, StretchWithWindow = 2
} |
|
static bool | EigenVector3dFromJsonArray (Eigen::Vector3d &vec, const Json::Value &value) |
|
static bool | EigenVector3dToJsonArray (const Eigen::Vector3d &vec, Json::Value &value) |
|
static bool | EigenVector4dFromJsonArray (Eigen::Vector4d &vec, const Json::Value &value) |
|
static bool | EigenVector4dToJsonArray (const Eigen::Vector4d &vec, Json::Value &value) |
|
static bool | EigenMatrix3dFromJsonArray (Eigen::Matrix3d &mat, const Json::Value &value) |
|
static bool | EigenMatrix3dToJsonArray (const Eigen::Matrix3d &mat, Json::Value &value) |
|
static bool | EigenMatrix4dFromJsonArray (Eigen::Matrix4d &mat, const Json::Value &value) |
|
static bool | EigenMatrix4dToJsonArray (const Eigen::Matrix4d &mat, Json::Value &value) |
|
static bool | EigenMatrix4dFromJsonArray (Eigen::Matrix4d_u &mat, const Json::Value &value) |
|
static bool | EigenMatrix4dToJsonArray (const Eigen::Matrix4d_u &mat, Json::Value &value) |
|
static bool | EigenMatrix6dFromJsonArray (Eigen::Matrix6d &mat, const Json::Value &value) |
|
static bool | EigenMatrix6dToJsonArray (const Eigen::Matrix6d &mat, Json::Value &value) |
|
static bool | EigenMatrix6dFromJsonArray (Eigen::Matrix6d_u &mat, const Json::Value &value) |
|
static bool | EigenMatrix6dToJsonArray (const Eigen::Matrix6d_u &mat, Json::Value &value) |
|