Exemplo n.º 1
0
 public PoseVel2D(global::RTC.PoseVel2D source)
 {
     _Pose = new ReactiveRTM.RTC.Pose2D(source.pose);
     _Velocities = new ReactiveRTM.RTC.Velocity2D(source.velocities);
 }
Exemplo n.º 2
0
 public PoseVel2D()
 {
     _Pose = new ReactiveRTM.RTC.Pose2D();
     _Velocities = new ReactiveRTM.RTC.Velocity2D();
 }
Exemplo n.º 3
0
 public Waypoint2D(global::RTC.Waypoint2D source)
 {
     _Target = new ReactiveRTM.RTC.Pose2D(source.target);
     _DistanceTolerance = source.distanceTolerance;
     _HeadingTolerance = source.headingTolerance;
     _TimeLimit = Converter.RtcTimeToDateTime(source.timeLimit);
     _MaxSpeed = new ReactiveRTM.RTC.Velocity2D(source.maxSpeed);
 }
Exemplo n.º 4
0
 public Waypoint2D()
 {
     _Target = new ReactiveRTM.RTC.Pose2D();
     _DistanceTolerance = new System.Double();
     _HeadingTolerance = new System.Double();
     _TimeLimit = default(System.DateTime);
     _MaxSpeed = new ReactiveRTM.RTC.Velocity2D();
 }
Exemplo n.º 5
0
 public TimedVelocity2D(global::RTC.TimedVelocity2D source)
 {
     _Tm = Converter.RtcTimeToDateTime(source.tm);
     _Data = new ReactiveRTM.RTC.Velocity2D(source.data);
 }
Exemplo n.º 6
0
 public TimedVelocity2D()
 {
     _Tm = default(System.DateTime);
     _Data = new ReactiveRTM.RTC.Velocity2D();
 }