|
a |
|
b/Tools/AnyMocap/BVHSettings.any |
|
|
1 |
Main.ModelSetup.BVHFileData = |
|
|
2 |
{ |
|
|
3 |
FileName = MOCAP_C3D_DATA_PATH +"/"+ Main.ModelSetup.TrialSpecificData.TrialFileName + ".bvh"; //add the extension to the file name here |
|
|
4 |
|
|
|
5 |
ModelDrawOnOff = On; |
|
|
6 |
ModelDrawScale =0.15; |
|
|
7 |
ModelDrawRGBs={{212,49,117}/256,{0.2,0.1,0.3},{49,171,212}/256}; |
|
|
8 |
|
|
|
9 |
// Usually set from the LabSpecificDataFile. |
|
|
10 |
//TranslationScale = 1; |
|
|
11 |
//RotationScale = pi/180.0; |
|
|
12 |
|
|
|
13 |
InitialPos_FrameNo=Main.ModelSetup.TrialSpecificData.FirstFrame; |
|
|
14 |
|
|
|
15 |
// Don't filter BVH data. Data is filtered after the marker positions have been genreated |
|
|
16 |
TranslationalDataFilterIndex = -1; |
|
|
17 |
// Don't filter BVH data. Data is filtered after the marker positions have been genreated |
|
|
18 |
RotationalDataFilterIndex = -1; |
|
|
19 |
|
|
|
20 |
Rotation2PiFixOnOff = On; |
|
|
21 |
Rotation1PiFixOnOff = Off; |
|
|
22 |
|
|
|
23 |
InterPolType = PiecewiseLinear ; |
|
|
24 |
|
|
|
25 |
}; |
|
|
26 |
|
|
|
27 |
|