1
0
mirror of https://gitlab.com/obbart/universal_robots_ros_driver.git synced 2026-04-10 18:10:47 +02:00

Added basic vector and cartesian types

This commit is contained in:
Simon Rasmussen
2017-02-06 14:16:48 +01:00
parent ead41d205c
commit c4c613c5e7

View File

@@ -0,0 +1,12 @@
#pragma once
#include <inttypes.h>
typedef struct {
double x, y, z;
} double3_t;
typedef struct {
double3_t position;
double3_t rotation;
} cartesian_coord_t;