Simple.rs example uses Size instead of Size2 to create Shapes
tofraley opened this issue · 1 comments
tofraley commented
When I copy this example and run, I get a compilation error that Shape does not implement From<Size>
.
Looking at the dim2 module, I see it does implement From<Size2>
, which seems pretty similar.
Adding use physme::dim2::Size2;
and then changing references from Size to Size2 seems to fix this.
sim-the-bean commented
Thank you for notifying me of this issue. Fixed, closing.
use physme::dim2::Size2;
is also no longer necessary, as it is now re-exported in physme::prelude2d
.