Changeset 1118 for cpp/frams/model/model.h
- Timestamp:
- 03/31/21 03:05:28 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/model/model.h
r1115 r1118 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-202 0Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2021 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 389 389 390 390 /// build this model using solid shape types, based on the provided ball-and-stick model. See also shapeconvert.cpp. 391 void buildUsingSolidShapeTypes(const Model &src_ballandstick_shapes, Part::Shape use_shape = Part::SHAPE_CYLINDER, double thickness = 0.1);391 void buildUsingSolidShapeTypes(const Model &src_ballandstick_shapes, Part::Shape use_shape = Part::SHAPE_CYLINDER, double thickness = Part::DEFAULT_STICK_RADIUS); 392 392 393 393 protected: … … 442 442 Model *converted_model; 443 443 Model *using_model; 444 SolidsShapeTypeModel(Model &m, Part::Shape use_shape = Part::SHAPE_CYLINDER, double thickness = 0.2);444 SolidsShapeTypeModel(Model &m, Part::Shape use_shape = Part::SHAPE_CYLINDER, double thickness = Part::DEFAULT_STICK_RADIUS); 445 445 operator Model &() { return *using_model; } 446 446 Model &getModel() { return *using_model; }
Note: See TracChangeset
for help on using the changeset viewer.