OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
SourceTarget.h
Go to the documentation of this file.
1#pragma once
2#include <map>
3#include <string>
4enum sourceType { e, h };
6
7namespace port
8{
9 static std::map<axis, std::string> axisName = { {x_axis, "X-Axis"}, {y_axis, "Y-Axis"}, {z_axis, "Z-Axis"} };
10 static std::map<axis, std::string> axisAbbreviation = { {x_axis, "x"}, {y_axis, "y"}, {z_axis, "z"} };
11}
12
sourceType
Definition SourceTarget.h:4
@ e
Definition SourceTarget.h:4
@ h
Definition SourceTarget.h:4
axis
Definition SourceTarget.h:5
@ x_axis
Definition SourceTarget.h:5
@ z_axis
Definition SourceTarget.h:5
@ y_axis
Definition SourceTarget.h:5
Definition SourceTarget.h:8
static std::map< axis, std::string > axisName
Definition SourceTarget.h:9
static std::map< axis, std::string > axisAbbreviation
Definition SourceTarget.h:10