예제 #1
0
 public PoseFeature(global::RTC.PoseFeature source)
 {
     _Probability = source.probability;
     _Position = new ReactiveRTM.RTC.Pose2D(source.position);
     _Covariance = new ReactiveRTM.RTC.Covariance2D(source.covariance);
 }
예제 #2
0
 public PoseFeature()
 {
     _Probability = new System.Double();
     _Position = new ReactiveRTM.RTC.Pose2D();
     _Covariance = new ReactiveRTM.RTC.Covariance2D();
 }
예제 #3
0
 public Hypothesis2D(global::RTC.Hypothesis2D source)
 {
     _Mean = new ReactiveRTM.RTC.Pose2D(source.mean);
     _Covariance = new ReactiveRTM.RTC.Covariance2D(source.covariance);
     _Weight = source.weight;
 }
예제 #4
0
 public Hypothesis2D()
 {
     _Mean = new ReactiveRTM.RTC.Pose2D();
     _Covariance = new ReactiveRTM.RTC.Covariance2D();
     _Weight = new System.Double();
 }
예제 #5
0
 public TimedCovariance2D(global::RTC.TimedCovariance2D source)
 {
     _Tm = Converter.RtcTimeToDateTime(source.tm);
     _Data = new ReactiveRTM.RTC.Covariance2D(source.data);
 }
예제 #6
0
 public TimedCovariance2D()
 {
     _Tm = default(System.DateTime);
     _Data = new ReactiveRTM.RTC.Covariance2D();
 }