Changeset 920 for cpp/frams/neuro
- Timestamp:
- 05/10/20 01:24:46 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/neuro/impl/neuroimpl-body-sdk.h
r907 r920 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-20 15Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2020 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 57 57 }; 58 58 59 extern ParamEntry NI_SolidMuscle_tab[]; 60 class NI_SolidMuscle : public NeuroImpl 61 { 62 public: 63 paInt axis; 64 NeuroImpl* makeNew() { return new NI_SolidMuscle(); } // for NeuroFactory 65 NI_SolidMuscle() { paramentries = NI_SolidMuscle_tab; } 66 int lateinit() { if (!neuro->joint) return 0; simorder = 2; return 1; } 67 void go() {} 68 }; 69 59 70 extern ParamEntry NI_LinearMuscle_tab[]; 60 71 class NI_LinearMuscle : public NeuroImpl
Note: See TracChangeset
for help on using the changeset viewer.