LeviLamina
Loading...
Searching...
No Matches
Degree.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace mce { struct Radian; }
8// clang-format on
9
10namespace mce {
11
12struct Degree : public ::type_safe::strong_typedef<::mce::Degree, float>,
13 public ::type_safe::strong_typedef_op::equality_comparison<::mce::Degree>,
14 public ::type_safe::strong_typedef_op::relational_comparison<::mce::Degree>,
15 public ::type_safe::strong_typedef_op::floating_point_arithmetic<::mce::Degree>,
16 public ::type_safe::strong_typedef_op::input_operator<::mce::Degree>,
17 public ::type_safe::strong_typedef_op::output_operator<::mce::Degree> {
18public:
19 // prevent constructor by default
20 Degree();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCNAPI explicit Degree(::mce::Radian rad);
26
27 MCNAPI float const& asFloat() const;
28 // NOLINTEND
29
30public:
31 // constructor thunks
32 // NOLINTBEGIN
33 MCNAPI void* $ctor(::mce::Radian rad);
34 // NOLINTEND
35};
36
37} // namespace mce
MCAPI void * $ctor(::mce::Radian rad)
MCAPI float const & asFloat() const
MCAPI Degree(::mce::Radian rad)
Definition Radian.h:17