Removed an unused error code

This commit is contained in:
Mael Rouxel-Labbé 2016-11-09 18:29:55 +01:00
parent fcfe9662af
commit 6f40a05af1
2 changed files with 0 additions and 3 deletions

View File

@ -50,7 +50,6 @@ typedef unspecified_type TriangleMesh;
ERROR_NON_CONVEX_BORDER, ///< This parameterization method requires a convex border
ERROR_CANNOT_SOLVE_LINEAR_SYSTEM,///< Cannot solve linear system
ERROR_NO_1_TO_1_MAPPING, ///< Parameterization failed: no one-to-one mapping
ERROR_OUT_OF_MEMORY, ///< Not enough memory
ERROR_WRONG_PARAMETER ///< A method received an unexpected parameter
};
/// @}

View File

@ -74,7 +74,6 @@ public:
ERROR_NON_CONVEX_BORDER, ///< This parameterization method requires a convex border
ERROR_CANNOT_SOLVE_LINEAR_SYSTEM,///< Cannot solve linear system
ERROR_NO_1_TO_1_MAPPING, ///< Parameterization failed: no one-to-one mapping
ERROR_OUT_OF_MEMORY, ///< Not enough memory
ERROR_WRONG_PARAMETER ///< A method received an unexpected parameter
};
@ -122,7 +121,6 @@ public:
"This parameterization method requires a convex border",
"Cannot solve linear system",
"Parameterization failed: no one-to-one mapping",
"Not enough memory",
"A method received an unexpected parameter"
};