LeviLamina
Loading...
Searching...
No Matches
SplineHelperHermite.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/common/editor/SplineHelperBase.h"
7
8// auto generated forward declare list
9// clang-format off
10class Vec3;
11// clang-format on
12
13namespace Editor::Widgets {
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 1
20 virtual ::std::optional<::std::vector<::Vec3>>
21 calculateInterpolatedPoints(::std::vector<::Vec3> const& controlPoints, int const maxStepsPerControlSegment) const
22 /*override*/;
23
24 // vIndex: 0
25 virtual ~SplineHelperHermite() /*override*/ = default;
26 // NOLINTEND
27
28public:
29 // destructor thunk
30 // NOLINTBEGIN
31
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37 MCAPI ::std::optional<::std::vector<::Vec3>>
38 $calculateInterpolatedPoints(::std::vector<::Vec3> const& controlPoints, int const maxStepsPerControlSegment) const;
39 // NOLINTEND
40
41public:
42 // vftables
43 // NOLINTBEGIN
44 MCAPI static void** $vftable();
45 // NOLINTEND
46};
47
48} // namespace Editor::Widgets
Definition SplineHelperBase.h:12
Definition SplineHelperHermite.h:15
Definition Vec3.h:10