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.h

    r1130 r1323  
    11// This file is a part of Framsticks SDK.  http://www.framsticks.com/
    2 // Copyright (C) 1999-2021  Maciej Komosinski and Szymon Ulatowski.
     2// Copyright (C) 1999-2024  Maciej Komosinski and Szymon Ulatowski.
    33// See LICENSE.txt for details.
    44
     
    390390
    391391        /// build this model using solid shape types, based on the provided ball-and-stick model. See also shapeconvert.cpp.
    392         void buildUsingSolidShapeTypes(const Model &src_ballandstick_shapes, Part::Shape use_shape = Part::SHAPE_CYLINDER, double thickness = Part::DEFAULT_STICK_RADIUS);
     392        void buildUsingSolidShapeTypes(const Model &src_ballandstick_shapes, Part::Shape use_shape = Part::SHAPE_CYLINDER, double radius = Part::BALL_AND_STICK_RADIUS);
    393393
    394394protected:
     
    443443        Model *converted_model;
    444444        Model *using_model;
    445         SolidsShapeTypeModel(Model &m, Part::Shape use_shape = Part::SHAPE_CYLINDER, double thickness = Part::DEFAULT_STICK_RADIUS);
     445        SolidsShapeTypeModel(Model &m, Part::Shape use_shape = Part::SHAPE_CYLINDER, double radius = Part::BALL_AND_STICK_RADIUS);
    446446        operator Model &() { return *using_model; }
    447447        Model &getModel() { return *using_model; }
Note: See TracChangeset for help on using the changeset viewer.