DrawCircle, DrawRect, ... UNFILLED?
Monkey Forums/Monkey Programming/DrawCircle, DrawRect, ... UNFILLED?| 
 | ||
| Hi all, is there a way to draw an unfilled circle using DrawCircle? Thanks and cheers! | 
| 
 | ||
| do you need to see behind it, or through it ? if not just draw two a red one then a black one 1 pixel smaller. | 
| 
 | ||
| Or 1.5 pixels smaller, if you prefer.  Even if you use ints for most things, it can be useful to use floats for circle radii. DrawCircle() should be called DrawDisc() :-) | 
| 
 | ||
| Check out Noodle's DrawArcOutline and DrawDonut functions here: http://www.monkeycoder.co.nz/Community/posts.php?topic=2462 Should be what you need :) | 
| 
 | ||
| For DrawRect (unfilled) you just have to do it "manually" with 4 lines unfortunately. | 
| 
 | ||
| Thanks guys! Would be nice to have it as an option for a draw commands. |