예제 #1
0
파일: Odometry.cs 프로젝트: KIT-ISAS/iviz
 /// <summary> Constructor for empty message. </summary>
 public Odometry()
 {
     ChildFrameId = string.Empty;
     Pose         = new GeometryMsgs.PoseWithCovariance();
     Twist        = new GeometryMsgs.TwistWithCovariance();
 }
예제 #2
0
 /// <summary> Explicit constructor. </summary>
 public ObjectHypothesisWithPose(string Id, double Score, GeometryMsgs.PoseWithCovariance Pose)
 {
     this.Id    = Id;
     this.Score = Score;
     this.Pose  = Pose;
 }
예제 #3
0
 /// <summary> Constructor with buffer. </summary>
 internal ObjectHypothesisWithPose(ref Buffer b)
 {
     Id    = b.DeserializeString();
     Score = b.Deserialize <double>();
     Pose  = new GeometryMsgs.PoseWithCovariance(ref b);
 }
예제 #4
0
 /// <summary> Constructor for empty message. </summary>
 public ObjectHypothesisWithPose()
 {
     Id   = string.Empty;
     Pose = new GeometryMsgs.PoseWithCovariance();
 }