Changeset 1004 for cpp/frams


Ignore:
Timestamp:
07/14/20 12:00:57 (4 years ago)
Author:
Maciej Komosinski
Message:

Cosmetic

Location:
cpp/frams
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/_demos/simil_test.cpp

    r973 r1004  
    1212
    1313
    14 
    15 using namespace std;
    1614
    1715/** Computes a matrix of distances between all genotypes in the specified
  • cpp/frams/model/modelparts.h

    r999 r1004  
    240240        paInt supported_shape_types; //< bitfield of 'Model::shape' values: NeuroClass::SUPPORTED_SHAPE_xxx = 1 << Model::SHAPE_xxx
    241241
    242         static constexpr int SUPPORTED_JOINT_BALL_AND_STICK = 1;
     242        static constexpr int SUPPORTED_JOINT_STICK = 1;
    243243        static constexpr int SUPPORTED_JOINT_FIXED = 2;
    244244        static constexpr int SUPPORTED_JOINT_HINGE_X = 4;
    245245        static constexpr int SUPPORTED_JOINT_HINGE_XY = 8;
    246         static constexpr int SUPPORTED_JOINTSHAPE_ALL = SUPPORTED_JOINT_BALL_AND_STICK + SUPPORTED_JOINT_FIXED + SUPPORTED_JOINT_HINGE_X + SUPPORTED_JOINT_HINGE_XY;
     246        static constexpr int SUPPORTED_JOINTSHAPE_ALL = SUPPORTED_JOINT_STICK + SUPPORTED_JOINT_FIXED + SUPPORTED_JOINT_HINGE_X + SUPPORTED_JOINT_HINGE_XY;
    247247        paInt supported_joint_shapes; //< bitfield of 'Joint::shape' values: NeuroClass::SUPPORTED_JOINT_xxx = 1 << JOINT::SHAPE_xxx
    248248
Note: See TracChangeset for help on using the changeset viewer.