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:
12
include/ur_modern_driver/types.h
Normal file
12
include/ur_modern_driver/types.h
Normal 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;
|
||||||
Reference in New Issue
Block a user