Skip to content

Commit

Permalink
WIP: Quaternion interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
NicerNewerCar committed Jan 30, 2024
1 parent 866a5d2 commit 447df48
Show file tree
Hide file tree
Showing 18 changed files with 1,220 additions and 1,165 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ _make_installer/*
.vs/
CMakeSettings.json

# Nvim
compile_commands.json
.cache/

# PyCharm
out/

Expand Down
10 changes: 4 additions & 6 deletions autoscoper/src/core/History.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,10 @@

struct State
{
std::vector <KeyCurve> x_curve;
std::vector <KeyCurve> y_curve;
std::vector <KeyCurve> z_curve;
std::vector <KeyCurve> x_rot_curve;
std::vector <KeyCurve> y_rot_curve;
std::vector <KeyCurve> z_rot_curve;
std::vector <KeyCurve<float>> x_curve;
std::vector <KeyCurve<float>> y_curve;
std::vector <KeyCurve<float>> z_curve;
std::vector <KeyCurve<Quatf>> quat_curve;
};

class History
Expand Down
Loading

0 comments on commit 447df48

Please sign in to comment.