Esempio n. 1
0
 public SpiralInvoluteParam(Hashtable hash)
 {
     baseRadius = MoveParamTool.GetRadius(hash);
     speed      = MoveParamTool.GetSpeed(hash);
     endRadian  = MoveParamTool.GetEndRadian(hash);
     startPoint = MoveParamTool.GetStartPoint(hash);
     firstPhase = MoveParamTool.GetFirstPhase(hash);
 }
Esempio n. 2
0
 public static LinearMotion GetMoveControl(Hashtable hash)
 {
     return(new LinearMotion(MoveParamTool.GetStartPoint(hash),
                             MoveParamTool.GetEndPoint(hash),
                             MoveParamTool.GetSpeed(hash)));
 }
Esempio n. 3
0
 public static IMoveCtrl GetMoveControl(Hashtable hash)
 {
     return(new BesselCurve(MoveParamTool.GetPathArr(hash), MoveParamTool.GetSpeed(hash)));
 }