Ejemplo n.º 1
0
 public InertiaMsg(double m, Vector3Msg com, double ixx, double ixy, double ixz, double iyy, double iyz, double izz)
 {
     this.m   = m;
     this.com = com;
     this.ixx = ixx;
     this.ixy = ixy;
     this.ixz = ixz;
     this.iyy = iyy;
     this.iyz = iyz;
     this.izz = izz;
 }
Ejemplo n.º 2
0
 public InertiaMsg()
 {
     this.m   = 0.0;
     this.com = new Vector3Msg();
     this.ixx = 0.0;
     this.ixy = 0.0;
     this.ixz = 0.0;
     this.iyy = 0.0;
     this.iyz = 0.0;
     this.izz = 0.0;
 }
Ejemplo n.º 3
0
 private InertiaMsg(MessageDeserializer deserializer)
 {
     deserializer.Read(out this.m);
     this.com = Vector3Msg.Deserialize(deserializer);
     deserializer.Read(out this.ixx);
     deserializer.Read(out this.ixy);
     deserializer.Read(out this.ixz);
     deserializer.Read(out this.iyy);
     deserializer.Read(out this.iyz);
     deserializer.Read(out this.izz);
 }
Ejemplo n.º 4
0
 private TransformMsg(MessageDeserializer deserializer)
 {
     this.translation = Vector3Msg.Deserialize(deserializer);
     this.rotation    = QuaternionMsg.Deserialize(deserializer);
 }
Ejemplo n.º 5
0
 public TransformMsg(Vector3Msg translation, QuaternionMsg rotation)
 {
     this.translation = translation;
     this.rotation    = rotation;
 }
Ejemplo n.º 6
0
 public TransformMsg()
 {
     this.translation = new Vector3Msg();
     this.rotation    = new QuaternionMsg();
 }
Ejemplo n.º 7
0
 private AccelMsg(MessageDeserializer deserializer)
 {
     this.linear  = Vector3Msg.Deserialize(deserializer);
     this.angular = Vector3Msg.Deserialize(deserializer);
 }
Ejemplo n.º 8
0
 public AccelMsg(Vector3Msg linear, Vector3Msg angular)
 {
     this.linear  = linear;
     this.angular = angular;
 }
Ejemplo n.º 9
0
 public TwistMsg(Vector3Msg linear, Vector3Msg angular)
 {
     this.linear  = linear;
     this.angular = angular;
 }
Ejemplo n.º 10
0
 private Vector3StampedMsg(MessageDeserializer deserializer)
 {
     this.header = Std.HeaderMsg.Deserialize(deserializer);
     this.vector = Vector3Msg.Deserialize(deserializer);
 }
Ejemplo n.º 11
0
 public Vector3StampedMsg(Std.HeaderMsg header, Vector3Msg vector)
 {
     this.header = header;
     this.vector = vector;
 }
Ejemplo n.º 12
0
 public Vector3StampedMsg()
 {
     this.header = new Std.HeaderMsg();
     this.vector = new Vector3Msg();
 }
Ejemplo n.º 13
0
 private WrenchMsg(MessageDeserializer deserializer)
 {
     this.force  = Vector3Msg.Deserialize(deserializer);
     this.torque = Vector3Msg.Deserialize(deserializer);
 }
Ejemplo n.º 14
0
 public WrenchMsg(Vector3Msg force, Vector3Msg torque)
 {
     this.force  = force;
     this.torque = torque;
 }
Ejemplo n.º 15
0
 public WrenchMsg()
 {
     this.force  = new Vector3Msg();
     this.torque = new Vector3Msg();
 }
Ejemplo n.º 16
0
 public AccelMsg()
 {
     this.linear  = new Vector3Msg();
     this.angular = new Vector3Msg();
 }
Ejemplo n.º 17
0
 public TwistMsg()
 {
     this.linear  = new Vector3Msg();
     this.angular = new Vector3Msg();
 }