You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 5, 2018. It is now read-only.
Support StaticVector and possibly other StaticArrays.
Two possible use cases:
map an AbstractVector to StaticVector elements when that is required by the transformation. Pro: more flexible interface. Con: transformations would require a result type specification.
only map SVector to SVector, 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 an SVector to a bunch of MVectors.
Support
StaticVectorand possibly otherStaticArrays.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.