ContinuousTransformations.jl
ContinuousTransformations.jl copied to clipboard
support StaticVector
Support StaticVector and possibly other StaticArrays.
Two possible use cases:
-
map an
AbstractVectortoStaticVectorelements when that is required by the transformation. Pro: more flexible interface. Con: transformations would require a result type specification. -
only map
SVectortoSVector, etc. This would keep the interface simple, but require conversion by the user, either for the inputs or the outputs. It is also conceivable that one would want to map anSVectorto a bunch ofMVectors.