Ignore:
Timestamp:
08/12/24 03:48:20 (4 months ago)
Author:
Maciej Komosinski
Message:

Field rename for less ambiguity

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/model/model.cpp

    r1286 r1323  
    11// This file is a part of Framsticks SDK.  http://www.framsticks.com/
    2 // Copyright (C) 1999-2023  Maciej Komosinski and Szymon Ulatowski.
     2// Copyright (C) 1999-2024  Maciej Komosinski and Szymon Ulatowski.
    33// See LICENSE.txt for details.
    44
     
    12891289}
    12901290
    1291 void Model::buildUsingSolidShapeTypes(const Model &src_ballandstick_shapes, Part::Shape use_shape, double thickness)
     1291void Model::buildUsingSolidShapeTypes(const Model &src_ballandstick_shapes, Part::Shape use_shape, double radius)
    12921292{
    12931293        for (int i = 0; i < src_ballandstick_shapes.getJointCount(); i++)
     
    13001300                p->setRot(o.getAngles());
    13011301                p->scale.x = oj->part1->p.distanceTo(oj->part2->p) / 2;
    1302                 p->scale.y = thickness;
    1303                 p->scale.z = thickness;
     1302                p->scale.y = radius;
     1303                p->scale.z = radius;
    13041304        }
    13051305        if (src_ballandstick_shapes.getJointCount() == 0) //single part "ball-and-stick" models are valid so let's make a valid solid shape model
     
    13101310                        p->p = op->p;
    13111311                        p->rot = op->rot;
    1312                         p->scale.x = p->scale.y = p->scale.z = thickness;
     1312                        p->scale.x = p->scale.y = p->scale.z = radius;
    13131313                }
    13141314        for (int i = 0; i < src_ballandstick_shapes.getPartCount(); i++)
     
    13341334}
    13351335
    1336 SolidsShapeTypeModel::SolidsShapeTypeModel(Model &m, Part::Shape use_shape, double thickness)
     1336SolidsShapeTypeModel::SolidsShapeTypeModel(Model &m, Part::Shape use_shape, double radius)
    13371337{
    13381338        using_model = converted_model = NULL;
     
    13411341                converted_model = new Model;
    13421342                converted_model->open();
    1343                 converted_model->buildUsingSolidShapeTypes(m, use_shape, thickness);
     1343                converted_model->buildUsingSolidShapeTypes(m, use_shape, radius);
    13441344                converted_model->close();
    13451345                using_model = converted_model;
Note: See TracChangeset for help on using the changeset viewer.