LeviLamina
Loading...
Searching...
No Matches
SplineHelperBase.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
10namespace Editor::Widgets {
11
13public:
14 // virtual functions
15 // NOLINTBEGIN
16 // vIndex: 0
17 virtual ~SplineHelperBase() = default;
18
19 // vIndex: 1
20 virtual ::std::optional<::std::vector<::Vec3>>
21 calculateInterpolatedPoints(::std::vector<::Vec3> const&, int const) const = 0;
22 // NOLINTEND
23
24public:
25 // destructor thunk
26 // NOLINTBEGIN
27
28 // NOLINTEND
29
30public:
31 // virtual function thunks
32 // NOLINTBEGIN
33
34 // NOLINTEND
35};
36
37} // namespace Editor::Widgets
Definition SplineHelperBase.h:12
Definition Vec3.h:10