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/editor/services/widgets/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 virtual ::std::optional<::std::vector<::Vec3>>
20 calculateInterpolatedPoints(::std::vector<::Vec3> const& controlPoints, int const maxStepsPerControlSegment) const
21 /*override*/;
22 // NOLINTEND
23
24public:
25 // virtual function thunks
26 // NOLINTBEGIN
27 MCNAPI ::std::optional<::std::vector<::Vec3>>
28 $calculateInterpolatedPoints(::std::vector<::Vec3> const& controlPoints, int const maxStepsPerControlSegment) const;
29
30
31 // NOLINTEND
32
33public:
34 // vftables
35 // NOLINTBEGIN
36 MCNAPI static void** $vftable();
37 // NOLINTEND
38};
39
40} // namespace Editor::Widgets
Definition SplineHelperBase.h:12
Definition SplineHelperHermite.h:15
MCAPI ::std::optional<::std::vector<::Vec3 > > $calculateInterpolatedPoints(::std::vector<::Vec3 > const &controlPoints, int const maxStepsPerControlSegment) const
static MCAPI void ** $vftable()
Definition Vec3.h:10