Exemplo n.º 1
0
 public TwistWithCovariance(Twist twist, double[] covariance)
 {
     this.twist      = twist;
     this.covariance = covariance;
 }
Exemplo n.º 2
0
 public TwistStamped(Header header, Twist twist)
 {
     this.header = header;
     this.twist  = twist;
 }
Exemplo n.º 3
0
 public TwistWithCovariance()
 {
     this.twist      = new Twist();
     this.covariance = new double[36];
 }
Exemplo n.º 4
0
 public TwistStamped()
 {
     this.header = new Header();
     this.twist  = new Twist();
 }