types.h
Go to the documentation of this file.
1 /*
2  * Copyright 2017, 2018 Simon Rasmussen (refactor)
3  *
4  * Copyright 2015, 2016 Thomas Timm Andersen (original version)
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18 
19 #pragma once
20 
21 #include <inttypes.h>
22 
23 struct double3_t
24 {
25  double x, y, z;
26 };
27 
29 {
32 };
33 
34 inline bool operator==(const double3_t& lhs, const double3_t& rhs)
35 {
36  return lhs.x == rhs.x && lhs.y == rhs.y && lhs.z == rhs.z;
37 }
38 
39 inline bool operator==(const cartesian_coord_t& lhs, const cartesian_coord_t& rhs)
40 {
41  return lhs.position == rhs.position && lhs.rotation == rhs.rotation;
42 }
bool operator==(const double3_t &lhs, const double3_t &rhs)
Definition: types.h:34
double3_t rotation
Definition: types.h:31
double y
Definition: types.h:25
double3_t position
Definition: types.h:30
double x
Definition: types.h:25
double z
Definition: types.h:25


ur_modern_driver
Author(s): Thomas Timm Andersen, Simon Rasmussen
autogenerated on Fri Jun 26 2020 03:37:01