mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 07:03:25 +00:00
16 lines
260 B
C++
16 lines
260 B
C++
//
|
|
// Created by Orange on 11/30/2024.
|
|
//
|
|
#pragma once
|
|
|
|
namespace omath
|
|
{
|
|
template<class PitchType, class YawType, class RollType>
|
|
struct ViewAngles
|
|
{
|
|
PitchType pitch;
|
|
YawType yaw;
|
|
RollType roll;
|
|
};
|
|
} // namespace omath
|