Example #1
0
 public PointCloudPoint(global::RTC.PointCloudPoint source)
 {
     _Point = new ReactiveRTM.RTC.Point3D(source.point);
     _Colour = new ReactiveRTM.RTC.RGBColour(source.colour);
 }
Example #2
0
 public TimedRGBColour(global::RTC.TimedRGBColour source)
 {
     _Tm = Converter.RtcTimeToDateTime(source.tm);
     _Data = new ReactiveRTM.RTC.RGBColour(source.data);
 }
Example #3
0
 public PointCloudPoint()
 {
     _Point = new ReactiveRTM.RTC.Point3D();
     _Colour = new ReactiveRTM.RTC.RGBColour();
 }
Example #4
0
 public TimedRGBColour()
 {
     _Tm = default(System.DateTime);
     _Data = new ReactiveRTM.RTC.RGBColour();
 }