-
-
Notifications
You must be signed in to change notification settings - Fork 18
draw_ellipse
CryoEagle edited this page Jan 13, 2019
·
1 revision
Draw ellipse with specified options
draw_ellipse(pos, exct, theta)
Argument | Description |
---|---|
Vector2 pos |
Position |
Vector2 exct |
Description |
float theta |
Theta of ellipse |
Returns: void
This function will draw specified ellipse in game.
draw_ellipse(Position, new Vector2(Position.X+20,Position.Y+50), 50);
Above code will draw ellipse.
Back to Shapes