The euclid crate is nice for working with points in 2d so it's a natural fit for SVG but it's not possible to implement From<Point2D<N, U>> for Parameters in your own project because of the orphan rule so I made an optional feature to support it.
Calling .to_tuple() everywhere instead would work so maybe this is overkill, up to you.
The euclid crate is nice for working with points in 2d so it's a natural fit for SVG but it's not possible to implement
From<Point2D<N, U>> for Parameters
in your own project because of the orphan rule so I made an optional feature to support it.Calling .to_tuple() everywhere instead would work so maybe this is overkill, up to you.