Changeset 1004
- Timestamp:
- 07/14/20 12:00:57 (4 years ago)
- Location:
- cpp/frams
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/_demos/simil_test.cpp
r973 r1004 12 12 13 13 14 15 using namespace std;16 14 17 15 /** Computes a matrix of distances between all genotypes in the specified -
cpp/frams/model/modelparts.h
r999 r1004 240 240 paInt supported_shape_types; //< bitfield of 'Model::shape' values: NeuroClass::SUPPORTED_SHAPE_xxx = 1 << Model::SHAPE_xxx 241 241 242 static constexpr int SUPPORTED_JOINT_ BALL_AND_STICK = 1;242 static constexpr int SUPPORTED_JOINT_STICK = 1; 243 243 static constexpr int SUPPORTED_JOINT_FIXED = 2; 244 244 static constexpr int SUPPORTED_JOINT_HINGE_X = 4; 245 245 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; 247 247 paInt supported_joint_shapes; //< bitfield of 'Joint::shape' values: NeuroClass::SUPPORTED_JOINT_xxx = 1 << JOINT::SHAPE_xxx 248 248
Note: See TracChangeset
for help on using the changeset viewer.