Changeset 815 for cpp/frams/model
- Timestamp:
- 08/15/18 02:24:10 (6 years ago)
- Location:
- cpp/frams/model
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/model/model.cpp
r732 r815 1230 1230 } 1231 1231 1232 void Model::buildUsingSolidShapeTypes(const Model& src_ballandstick_shapes, Part::Shape use_shape, floatthickness)1232 void Model::buildUsingSolidShapeTypes(const Model& src_ballandstick_shapes, Part::Shape use_shape, double thickness) 1233 1233 { 1234 1234 for (int i = 0; i < src_ballandstick_shapes.getJointCount(); i++) … … 1275 1275 } 1276 1276 1277 SolidsShapeTypeModel::SolidsShapeTypeModel(Model& m, Part::Shape use_shape, floatthickness)1277 SolidsShapeTypeModel::SolidsShapeTypeModel(Model& m, Part::Shape use_shape, double thickness) 1278 1278 { 1279 1279 using_model = converted_model = NULL; -
cpp/frams/model/model.h
r732 r815 383 383 384 384 /// build this model using solid shape types, based on the provided ball-and-stick model. See also shapeconvert.cpp. 385 void buildUsingSolidShapeTypes(const Model& src_ballandstick_shapes, Part::Shape use_shape = Part::SHAPE_CYLINDER, floatthickness = 0.2);385 void buildUsingSolidShapeTypes(const Model& src_ballandstick_shapes, Part::Shape use_shape = Part::SHAPE_CYLINDER, double thickness = 0.2); 386 386 387 387 protected: … … 436 436 Model *converted_model; 437 437 Model *using_model; 438 SolidsShapeTypeModel(Model& m, Part::Shape use_shape = Part::SHAPE_CYLINDER, floatthickness = 0.2);438 SolidsShapeTypeModel(Model& m, Part::Shape use_shape = Part::SHAPE_CYLINDER, double thickness = 0.2); 439 439 operator Model&() { return *using_model; } 440 440 Model& getModel() { return *using_model; }
Note: See TracChangeset
for help on using the changeset viewer.