BSplines, Polynomial fitting
This commit is contained in:
parent
bbcd6be250
commit
5c23d471de
9 changed files with 636 additions and 485 deletions
|
@ -28,6 +28,9 @@ using Mat = Eigen::Matrix<T, N, M, Eigen::DontAlign, N, M>;
|
|||
|
||||
template<int N, class T> using Vec = Mat<N, 1, T>;
|
||||
|
||||
template<typename NumberType>
|
||||
using DynVec = Eigen::Matrix<NumberType, Eigen::Dynamic, 1>;
|
||||
|
||||
// Eigen types, to replace the Slic3r's own types in the future.
|
||||
// Vector types with a fixed point coordinate base type.
|
||||
using Vec2crd = Eigen::Matrix<coord_t, 2, 1, Eigen::DontAlign>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue