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
Is your feature request related to a problem? Please describe.
When someone creates a tile with a certain x coordinat, this is a test most people expect to pass:
constdouble x = 1.0;
const tile a(x);
assert(x == a.get_x());
Currently, however, this test fails, as the tile is rescaled during construction. I see why the tiles need to be rescaled, it just needs to be done elsewhere.
Describe the solution you'd like
Make the tile constructor behave as expected. Do the rescaling someplace else.
Is your feature request related to a problem? Please describe.
When someone creates a tile with a certain x coordinat, this is a test most people expect to pass:
Currently, however, this test fails, as the tile is rescaled during construction. I see why the tiles need to be rescaled, it just needs to be done elsewhere.
Describe the solution you'd like
Make the tile constructor behave as expected. Do the rescaling someplace else.
These tests should pass:
Describe alternatives you've considered
None.
Additional context
#463 depends on this.
The text was updated successfully, but these errors were encountered: