add drawCircleLinesV
This commit is contained in:
parent
dfd0e4ffa8
commit
90bb1071dc
2 changed files with 5 additions and 0 deletions
|
|
@ -2184,6 +2184,10 @@ pub fn drawCircleLines(centerX: i32, centerY: i32, radius: f32, color: Color) vo
|
|||
cdef.DrawCircleLines(@as(c_int, centerX), @as(c_int, centerY), radius, color);
|
||||
}
|
||||
|
||||
pub fn drawCircleLinesV(center: Vector2, radius: f32, color: Color) void {
|
||||
cdef.DrawCircleLinesV(center, radius, color);
|
||||
}
|
||||
|
||||
pub fn drawEllipse(centerX: i32, centerY: i32, radiusH: f32, radiusV: f32, color: Color) void {
|
||||
cdef.DrawEllipse(@as(c_int, centerX), @as(c_int, centerY), radiusH, radiusV, color);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue