Guest User

Untitled

a guest
Apr 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. class Point : public ros::Msg
  2. {
  3. public:
  4. typedef double _x_type;
  5. _x_type x;
  6. typedef double _y_type;
  7. _y_type y;
  8. typedef double _z_type;
  9. _z_type z;
  10.  
  11. Point():
  12. x(0),
  13. y(0),
  14. z(0)
  15. {
  16. }
  17. }
  18.  
  19. class Point : public ros::Msg
  20. {
  21. public:
  22. double x;
  23. double y;
  24. double z;
  25.  
  26. Point():
  27. x(0),
  28. y(0),
  29. z(0)
  30. {
  31. }
  32. }
Add Comment
Please, Sign In to add comment