a b/Application/Examples/FreePosture/Model/DrawSettings.any
1
2
DrawSettings ={
3
    
4
  //This is the color definitions of the nodes and segments
5
   Colors = {
6
    AnyBodyRed = {149/256,51/256,55/256};    //AnyBody standard red
7
    AnyBodyGreen = {47/256,131/256,80/256};  //AnyBody standard green
8
    AnyBodyBlue = {82/256,85/256,111/256};   //AnyBody standard blue
9
    AnyBodyYellow= {235/256,197/256,17/256}; //AnyBody standard yellow
10
    AnyBodyPaleYellow = {248/256,204/256,115/256}; //AnyBody standard pale yellow
11
    
12
    Nodes = AnyBodyPaleYellow; 
13
    Segments =  AnyBodyPaleYellow; 
14
  };
15
  
16
  Muscle ={ 
17
    RGB = .Colors.AnyBodyRed;
18
   DrawScaleOnOff =Off;
19
    Bulging = 1.0;
20
    ColorScale =1.0;
21
    RGBColorScale = {0.957031, 0.785156, 0.785156};
22
    MaxStress = 100000.000000; //N/m^2 //This number is for graphics only!
23
    Opacity =1.0;
24
    DrawScale = 
25
    {
26
      EnableCreasing = Off;
27
      CreasingAngle = 0.524;
28
      EnableWireframe = Off;
29
      EnableSmoothing = On;
30
      Param = 0.0;
31
      ParamArray = {0.0, 0.167, 0.333, 0.5, 0.667, 0.833, 1.0};
32
      RGBArray = {{0.0, 0.0, 0.6}, {0.0, 0.0, 1.0}, {0.0, 1.0, 1.0}, {0.0, 1.0, 0.0}, {1.0, 1.0, 0.0}, {1.0, 0.0, 0.0}, {0.6, 0.0, 0.0}};
33
      OpacityArray = {1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0};
34
    };    
35
  }; 
36
  
37
  BonesOpacity ={
38
    
39
    GlobalCoef = 1;
40
    
41
    Skull = 1*GlobalCoef;
42
    Thorax = 1*GlobalCoef;
43
    Pelvis = 1*GlobalCoef;
44
    Sacrum = 1*GlobalCoef;
45
    L5 = 1*GlobalCoef;
46
    L4 = 1*GlobalCoef;
47
    L3 = 1*GlobalCoef;
48
    L2 = 1*GlobalCoef;
49
    L1 = 1*GlobalCoef;
50
    
51
    RightFoot = 1*GlobalCoef;
52
    RightShank = 1*GlobalCoef;
53
    RightThigh = 1*GlobalCoef;
54
    
55
    LeftFoot = 1*GlobalCoef;
56
    LeftShank = 1*GlobalCoef;
57
    LeftThigh = 1*GlobalCoef;
58
59
    
60
    RightClavicula = 1*GlobalCoef;
61
    RightScapula = 1*GlobalCoef;
62
    RightHumerus = 1*GlobalCoef;
63
    RightUlna = 1*GlobalCoef;
64
    RightRadius = 1*GlobalCoef;
65
    RightHand = 1*GlobalCoef;
66
    
67
    LeftClavicula = 1*GlobalCoef;
68
    LeftScapula = 1*GlobalCoef;
69
    LeftHumerus = 1*GlobalCoef;
70
    LeftUlna = 1*GlobalCoef;
71
    LeftRadius = 1*GlobalCoef;
72
    LeftHand = 1*GlobalCoef;
73
74
    
75
    // For leg TD only.
76
    RightTalus = 1*GlobalCoef;
77
    RightPatella = 1*GlobalCoef;
78
    
79
    LeftTalus = 1*GlobalCoef;
80
    LeftPatella = 1*GlobalCoef;
81
82
    
83
    // For detailed cervical model only.
84
    C1 = 1*GlobalCoef;
85
    C2 = 1*GlobalCoef;
86
    C3 = 1*GlobalCoef;
87
    C4 = 1*GlobalCoef;
88
    C5 = 1*GlobalCoef;
89
    C6 = 1*GlobalCoef;
90
    C7 = 1*GlobalCoef;
91
  };
92
  
93
  SegmentAxes ={
94
    RGB ={0,0,1};
95
    ScaleXYZ ={0.0001,0.00001,0.00001};
96
  };
97
  BML ={
98
    ScaleXYZ ={0.0006,0.0006,0.0006};
99
    RGB = .Colors.AnyBodyBlue;
100
  };
101
  JointAxesProximal = {
102
    RGB = .Colors.AnyBodyRed;
103
    ScaleXYZ = {0.015,0.015,0.015};
104
  };
105
  JointAxesDistal = {
106
    RGB = .Colors.AnyBodyGreen;
107
    ScaleXYZ = {0.01,0.01,0.01};
108
  };
109
  
110
  
111
  SegmentNodes ={
112
    ScaleXYZ ={0.0005,0.0005,0.0005};
113
    RGB = .Colors.AnyBodyRed;
114
  };
115
  WrapGeometry ={
116
    RGB ={1,1,1};
117
  };
118
  
119
  
120
  
121
    DrawSettingsSupport={
122
    Lin={ 
123
        ScaleFactor=0.004; 
124
       RGB = {0,0,1};
125
      Thickness = 0.004;
126
      HeadThickness = 2*Thickness;
127
      HeadLength = 3*Thickness;
128
    };
129
    Rot={ 
130
       ScaleFactor=0.08; 
131
      RGB = {1,0,0};
132
       Thickness = 0.075;
133
       HeadThickness = 2*Thickness;
134
       HeadLength = 5*Thickness;
135
    };
136
  };
137
  
138
    DrawSettingsJointReactions={
139
    Lin={ 
140
        ScaleFactor=0.0005; 
141
       RGB = {0,0,1};
142
      Thickness = 0.01;
143
      HeadThickness = 2*Thickness;
144
      HeadLength = 3*Thickness;
145
    };
146
    Rot={ 
147
       ScaleFactor=0.001; 
148
      RGB = {1,0,0};
149
       Thickness = 0.01;
150
       HeadThickness = 2*Thickness;
151
       HeadLength = 5*Thickness;
152
    };
153
  };
154
  
155
  Names={
156
   RGB={0,0,1};
157
   ScaleXYZ={0.01,0.01,0.01};
158
  };
159
  
160
  Marker={
161
  Color={0,0,1};
162
  Radius=0.005;
163
  
164
  };
165
}; //DrawSettings