Exemplo n.º 1
0
 public BodyAngles(BodyJoints body)
 {
     FrontalAngles    = new PlaneBasedBodyAngles(body, BasePlanes.Frontal);
     SagittalAngles   = new PlaneBasedBodyAngles(body, BasePlanes.Sagittal);
     HorizontalAngles = new PlaneBasedBodyAngles(body, BasePlanes.Horizontal);
 }
Exemplo n.º 2
0
 //creates a body targetBodyAngles that has no angles, but initializes the partial body poses
 public BodyAngles()
 {
     FrontalAngles    = new PlaneBasedBodyAngles(BasePlanes.Frontal);
     SagittalAngles   = new PlaneBasedBodyAngles(BasePlanes.Sagittal);
     HorizontalAngles = new PlaneBasedBodyAngles(BasePlanes.Horizontal);
 }