How to draw border circle, not filled ? #2063
-
HI guys , I need to create a circle not filled (only borders), I was investigating and i have this code that create the circle: func DrawCircle(screen *ebiten.Image, x float32, y float32, radius float32, clr color.RGBA) {
}
What do I have wrong in the code that i'ts draw fill included? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
What about using two circles by calling |
Beta Was this translation helpful? Give feedback.
-
Thanks for answering, I need a circle like this: If i call Arc twice, draw a circle inside another?, but i need the inside of the circle to be transparent |
Beta Was this translation helpful? Give feedback.
What about using two circles by calling
Arc
twice so that the path will be a donut?