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 virtual ~SplineHelperBase() = default;
17
18 virtual ::std::optional<::std::vector<::Vec3>>
19 calculateInterpolatedPoints(::std::vector<::Vec3> const&, int const) const = 0;
20 // NOLINTEND
21
22public:
23 // virtual function thunks
24 // NOLINTBEGIN
25
26 // NOLINTEND
27};
28
29} // namespace Editor::Widgets
Definition SplineHelperBase.h:12
Definition Vec3.h:10