LeviLamina
Loading...
Searching...
No Matches
Spherical.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Vec3;
8// clang-format on
9
10class Spherical {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<4, 4, float> mRadius;
15 ::ll::TypedStorage<4, 4, float> mAzimuth;
16 ::ll::TypedStorage<4, 4, float> mPolarAngle;
17 // NOLINTEND
18
19public:
20 // member functions
21 // NOLINTBEGIN
22#ifdef LL_PLAT_C
23 MCAPI Spherical();
24#endif
25 // NOLINTEND
26
27public:
28 // static functions
29 // NOLINTBEGIN
30#ifdef LL_PLAT_C
31 MCAPI static ::Spherical cartesianToSpherical(::Vec3 const& cartesian);
32#endif
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38#ifdef LL_PLAT_C
39 MCFOLD void* $ctor();
40#endif
41 // NOLINTEND
42};
Definition Spherical.h:10
Definition Vec3.h:10