Skip to content
Snippets Groups Projects
Commit 44250a00 authored by Ellen Dekkers's avatar Ellen Dekkers
Browse files

Types: BSplineCurve and BSplineSurface removed

git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@6832 383ad7c9-94d9-4d36-a494-682f7c89f535
parent bde4ee9f
No related branches found
No related tags found
No related merge requests found
......@@ -132,14 +132,6 @@ void initialize() {
typeToTypeInfo[DATA_POLY_MESH_CONST_ID] = types.size();
types.push_back( TypeInfo(DATA_POLY_MESH_CONST_ID ,"PolyMesh" ,"PolyType.png", QCoreApplication::translate("Types","Poly Mesh")) );
stringToTypeInfo["BSplineCurve"] = types.size();
typeToTypeInfo[DATA_BSPLINE_CURVE] = types.size();
types.push_back( TypeInfo(DATA_BSPLINE_CURVE ,"BSplineCurve" ,"BSplineCurveType.png" , QCoreApplication::translate("Types","B-Spline Curve")) );
stringToTypeInfo["BSplineSurface"] = types.size();
typeToTypeInfo[DATA_BSPLINE_SURFACE] = types.size();
types.push_back( TypeInfo(DATA_BSPLINE_SURFACE ,"BSplineSurface" ,"Unknown.png", QCoreApplication::translate("Types","B-Spline Surface")) );
stringToTypeInfo["All"] = types.size();
typeToTypeInfo[DATA_ALL] = types.size();
types.push_back( TypeInfo(DATA_ALL ,"All" ,"Unknown.png", QCoreApplication::translate("Types","All")) );
......@@ -148,8 +140,6 @@ void initialize() {
typeToString[DATA_GROUP] = "Group";
typeToString[DATA_TRIANGLE_MESH_CONST_ID] = "TriangleMesh";
typeToString[DATA_POLY_MESH_CONST_ID] = "PolyMesh";
typeToString[DATA_BSPLINE_CURVE] = "BSplineCurve";
typeToString[DATA_BSPLINE_SURFACE] = "BSplineSurface";
typeToString[DATA_ALL] = "All";
initialized_ = true;
......
......@@ -85,12 +85,6 @@
#define DATA_POLY_MESH typeId("PolyMesh")
#define DATA_POLY_MESH_CONST_ID 4
/// BSpline objects
const unsigned int DATA_BSPLINE_CURVE = 8;
/// BSpline Surface objects
const unsigned int DATA_BSPLINE_SURFACE = 16;
/// Identifier for all available objects
const unsigned int DATA_ALL = UINT_MAX;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment