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