When I make a box with a corner of (0,0) it makes it go slightly above the corner. See the code below.
from gasp import *
begin_graphics()
Box((0,0), 100, 100, filled=True, color=color.BLACK, thickness=0)
end_graphics()
The output is the attached screenshot.
When I make a box with a corner of (0,0) it makes it go slightly above the corner. See the code below.
```
from gasp import *
begin_graphics()
Box((0,0), 100, 100, filled=True, color=color.BLACK, thickness=0)
end_graphics()
```
The output is the attached screenshot.