opynsim
Unofficial C++ Documentation
Loading...
Searching...
No Matches
landmark.h
Go to the documentation of this file.
1#pragma once
2
4
5#include <optional>
6#include <string>
7
8namespace opyn
9{
10 struct Landmark final {
11 // If available, the name of this landmark.
12 std::optional<std::string> maybeName;
13
14 // The position of the landmark in its caller-specified coordinate system.
16
17 friend bool operator==(const Landmark&, const Landmark&) = default;
18 };
19}
Definition component_registry.h:14
Definition landmark.h:10
osc::Vector3 position
Definition landmark.h:15
friend bool operator==(const Landmark &, const Landmark &)=default
std::optional< std::string > maybeName
Definition landmark.h:12