JujuAdams / Clean-Shapes

Antialiased primitives library for GameMaker Studio 2023.1
MIT License
38 stars 6 forks source link

Unintuitive to draw a border-only ellipse #31

Open JujuAdams opened 2 years ago

JujuAdams commented 2 years ago

Minor note on CleanShapes, I have to do this to get a border-only ellipse:

    CleanEllipse(focused_node.x, focused_node.y, 120, 80)
        .Blend(c_black, 0)
        .Border(5, focused_color, 1)
        .Draw();

If you remove that Blend it just draws a solid ellipse (using the border color), which isn't what I'd expect. Not sure if this is a bug/fixable, just mentioning it