jipolanco / BSplineKit.jl

A collection of B-spline tools in Julia
https://jipolanco.github.io/BSplineKit.jl/dev/
MIT License
50 stars 9 forks source link

Allow interpolation of closed curves (cubic splines only) #95

Closed jipolanco closed 3 months ago

jipolanco commented 3 months ago

This fixes Periodic interpolations of SVector data when using BSplineOrder(4) (cubic splines).

Spline orders other than 4 still don't work, as they use linear solvers from SparseArrays which don't accept SVector data. This might be fixed in the future by splitting a vector of SVector{N, T} onto N vectors of element type T.

Partially fixes #94.