Switch to unified view

a b/Application/Examples/Squat/Model/FootPrintGeneration.any
1
AnyFolder FootPrintGeneration = 
2
{
3
  #if BM_LEG_RIGHT == ON
4
  FootPrint FootPrintRight(
5
  BaseNode = Main.Model.Environment.GlobalRef.FootPrintBase_Right,
6
  FootPrintSubNodeName = FP1,
7
  Limb = Main.HumanModel.BodyModel.Right.Leg.Seg.Foot
8
  )=
9
  {
10
    FootPrintVisible = On;
11
    FootPrintDrawingSize = 0.005;
12
    FootPrintDrawingColor = {1, 0, 0};
13
  };
14
  #endif
15
  
16
  #if BM_LEG_LEFT == ON
17
  FootPrint FootPrintLeft(
18
  BaseNode = Main.Model.Environment.GlobalRef.FootPrintBase_Left,
19
  FootPrintSubNodeName = FP1,
20
  Limb = Main.HumanModel.BodyModel.Left.Leg.Seg.Foot
21
  )=
22
  {
23
    FootPrintVisible = On;
24
    FootPrintDrawingSize = 0.005;
25
    FootPrintDrawingColor = {1, 0, 0};    
26
  };
27
  #endif
28
};