Exemple #1
0
 public MoveableHelper(IMoveable parent, MoveableRotationAxis rotationAxis = MoveableRotationAxis.Y, bool allowScaling = false)
 {
     _parent       = parent;
     _rotationAxis = rotationAxis;
     _allowScaling = allowScaling;
 }
 public MoveableHelper(IMoveable parent, MoveableRotationAxis rotationAxis)
 {
     _parent       = parent;
     _rotationAxis = rotationAxis;
 }