Changeset 528 for cpp/frams/model/model.cpp
- Timestamp:
- 07/18/16 04:14:37 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/model/model.cpp
r522 r528 923 923 p->mass = 0.0; 924 924 } 925 // VALIDMINMAX(p,part,mass); 925 //VALIDMINMAX(p,part,mass);//mass is very special 926 // VALIDMINMAX are managed manually when adding part properties in f0-def! 927 // (could be made dynamic but not really worth the effort) 926 928 VALIDMINMAX(p, Part, size); 929 VALIDMINMAX(p, Part, scale.x); 930 VALIDMINMAX(p, Part, scale.y); 931 VALIDMINMAX(p, Part, scale.z); 932 VALIDMINMAX(p, Part, hollow); 927 933 VALIDMINMAX(p, Part, density); 928 934 VALIDMINMAX(p, Part, friction); 929 935 VALIDMINMAX(p, Part, ingest); 930 936 VALIDMINMAX(p, Part, assim); 937 VALIDMINMAX(p, Part, vsize); 938 VALIDMINMAX(p, Part, vcolor.x); 939 VALIDMINMAX(p, Part, vcolor.y); 940 VALIDMINMAX(p, Part, vcolor.z); 931 941 p->flags &= ~LINKFLAG; // for delta joint cycle detection 932 942 if (p->p.x - p->size < bbmin.x) bbmin.x = p->p.x - p->size; … … 951 961 { 952 962 j = (Joint*)joints(i); 963 // VALIDMINMAX are managed manually when adding joint properties in f0-def! 964 // (could be made dynamic but not really worth the effort) 953 965 VALIDMINMAX(j, Joint, stamina); 954 966 VALIDMINMAX(j, Joint, stif); 955 967 VALIDMINMAX(j, Joint, rotstif); 968 VALIDMINMAX(p, Part, vcolor.x); 969 VALIDMINMAX(p, Part, vcolor.y); 970 VALIDMINMAX(p, Part, vcolor.z); 956 971 j->refno = i; 957 972 j->owner = this; … … 1039 1054 { 1040 1055 n = (Neuro*)neurons(i); 1041 VALIDMINMAX(n, Neuro, state);1042 1056 #ifdef MODEL_V1_COMPATIBLE 1043 1057 VALIDMINMAX(n,Neuro,inertia);
Note: See TracChangeset
for help on using the changeset viewer.