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