diff --git a/tools/rlparser/output/raylib_api.json b/tools/rlparser/output/raylib_api.json
index ed0e220d7..06abbb7f7 100644
--- a/tools/rlparser/output/raylib_api.json
+++ b/tools/rlparser/output/raylib_api.json
@@ -5698,6 +5698,48 @@
}
]
},
+ {
+ "name": "DrawCircleV",
+ "description": "Draw a color-filled circle (Vector version)",
+ "returnType": "void",
+ "params": [
+ {
+ "type": "Vector2",
+ "name": "center"
+ },
+ {
+ "type": "float",
+ "name": "radius"
+ },
+ {
+ "type": "Color",
+ "name": "color"
+ }
+ ]
+ },
+ {
+ "name": "DrawCircleGradient",
+ "description": "Draw a gradient-filled circle",
+ "returnType": "void",
+ "params": [
+ {
+ "type": "Vector2",
+ "name": "center"
+ },
+ {
+ "type": "float",
+ "name": "radius"
+ },
+ {
+ "type": "Color",
+ "name": "inner"
+ },
+ {
+ "type": "Color",
+ "name": "outer"
+ }
+ ]
+ },
{
"name": "DrawCircleSector",
"description": "Draw a piece of a circle",
@@ -5760,52 +5802,6 @@
}
]
},
- {
- "name": "DrawCircleGradient",
- "description": "Draw a gradient-filled circle",
- "returnType": "void",
- "params": [
- {
- "type": "int",
- "name": "centerX"
- },
- {
- "type": "int",
- "name": "centerY"
- },
- {
- "type": "float",
- "name": "radius"
- },
- {
- "type": "Color",
- "name": "inner"
- },
- {
- "type": "Color",
- "name": "outer"
- }
- ]
- },
- {
- "name": "DrawCircleV",
- "description": "Draw a color-filled circle (Vector version)",
- "returnType": "void",
- "params": [
- {
- "type": "Vector2",
- "name": "center"
- },
- {
- "type": "float",
- "name": "radius"
- },
- {
- "type": "Color",
- "name": "color"
- }
- ]
- },
{
"name": "DrawCircleLines",
"description": "Draw circle outline",
diff --git a/tools/rlparser/output/raylib_api.lua b/tools/rlparser/output/raylib_api.lua
index a412e513f..1fe26250c 100644
--- a/tools/rlparser/output/raylib_api.lua
+++ b/tools/rlparser/output/raylib_api.lua
@@ -4861,6 +4861,27 @@ return {
{type = "Color", name = "color"}
}
},
+ {
+ name = "DrawCircleV",
+ description = "Draw a color-filled circle (Vector version)",
+ returnType = "void",
+ params = {
+ {type = "Vector2", name = "center"},
+ {type = "float", name = "radius"},
+ {type = "Color", name = "color"}
+ }
+ },
+ {
+ name = "DrawCircleGradient",
+ description = "Draw a gradient-filled circle",
+ returnType = "void",
+ params = {
+ {type = "Vector2", name = "center"},
+ {type = "float", name = "radius"},
+ {type = "Color", name = "inner"},
+ {type = "Color", name = "outer"}
+ }
+ },
{
name = "DrawCircleSector",
description = "Draw a piece of a circle",
@@ -4887,28 +4908,6 @@ return {
{type = "Color", name = "color"}
}
},
- {
- name = "DrawCircleGradient",
- description = "Draw a gradient-filled circle",
- returnType = "void",
- params = {
- {type = "int", name = "centerX"},
- {type = "int", name = "centerY"},
- {type = "float", name = "radius"},
- {type = "Color", name = "inner"},
- {type = "Color", name = "outer"}
- }
- },
- {
- name = "DrawCircleV",
- description = "Draw a color-filled circle (Vector version)",
- returnType = "void",
- params = {
- {type = "Vector2", name = "center"},
- {type = "float", name = "radius"},
- {type = "Color", name = "color"}
- }
- },
{
name = "DrawCircleLines",
description = "Draw circle outline",
diff --git a/tools/rlparser/output/raylib_api.txt b/tools/rlparser/output/raylib_api.txt
index bdad7db98..1d82497b5 100644
--- a/tools/rlparser/output/raylib_api.txt
+++ b/tools/rlparser/output/raylib_api.txt
@@ -2262,7 +2262,22 @@ Function 230: DrawCircle() (4 input parameters)
Param[2]: centerY (type: int)
Param[3]: radius (type: float)
Param[4]: color (type: Color)
-Function 231: DrawCircleSector() (6 input parameters)
+Function 231: DrawCircleV() (3 input parameters)
+ Name: DrawCircleV
+ Return type: void
+ Description: Draw a color-filled circle (Vector version)
+ Param[1]: center (type: Vector2)
+ Param[2]: radius (type: float)
+ Param[3]: color (type: Color)
+Function 232: DrawCircleGradient() (4 input parameters)
+ Name: DrawCircleGradient
+ Return type: void
+ Description: Draw a gradient-filled circle
+ Param[1]: center (type: Vector2)
+ Param[2]: radius (type: float)
+ Param[3]: inner (type: Color)
+ Param[4]: outer (type: Color)
+Function 233: DrawCircleSector() (6 input parameters)
Name: DrawCircleSector
Return type: void
Description: Draw a piece of a circle
@@ -2272,7 +2287,7 @@ Function 231: DrawCircleSector() (6 input parameters)
Param[4]: endAngle (type: float)
Param[5]: segments (type: int)
Param[6]: color (type: Color)
-Function 232: DrawCircleSectorLines() (6 input parameters)
+Function 234: DrawCircleSectorLines() (6 input parameters)
Name: DrawCircleSectorLines
Return type: void
Description: Draw circle sector outline
@@ -2282,22 +2297,6 @@ Function 232: DrawCircleSectorLines() (6 input parameters)
Param[4]: endAngle (type: float)
Param[5]: segments (type: int)
Param[6]: color (type: Color)
-Function 233: DrawCircleGradient() (5 input parameters)
- Name: DrawCircleGradient
- Return type: void
- Description: Draw a gradient-filled circle
- Param[1]: centerX (type: int)
- Param[2]: centerY (type: int)
- Param[3]: radius (type: float)
- Param[4]: inner (type: Color)
- Param[5]: outer (type: Color)
-Function 234: DrawCircleV() (3 input parameters)
- Name: DrawCircleV
- Return type: void
- Description: Draw a color-filled circle (Vector version)
- Param[1]: center (type: Vector2)
- Param[2]: radius (type: float)
- Param[3]: color (type: Color)
Function 235: DrawCircleLines() (4 input parameters)
Name: DrawCircleLines
Return type: void
diff --git a/tools/rlparser/output/raylib_api.xml b/tools/rlparser/output/raylib_api.xml
index 83e2bd548..37d828049 100644
--- a/tools/rlparser/output/raylib_api.xml
+++ b/tools/rlparser/output/raylib_api.xml
@@ -1409,6 +1409,17 @@
+
+
+
+
+
+
+
+
+
+
+
@@ -1425,18 +1436,6 @@
-
-
-
-
-
-
-
-
-
-
-
-