summaryrefslogtreecommitdiffstats
path: root/doc/classes/CanvasItem.xml
diff options
context:
space:
mode:
authorkleonc <9283098+kleonc@users.noreply.github.com>2023-01-18 14:51:17 +0100
committerkleonc <9283098+kleonc@users.noreply.github.com>2023-01-18 15:16:22 +0100
commit43fc483e6cf609301004c37039aa45a2ca79e070 (patch)
tree522103835370d4aa10d586396e0a75b5d459331b /doc/classes/CanvasItem.xml
parente514e3732a9588b650776cc962a9e4d8e6ded058 (diff)
downloadredot-engine-43fc483e6cf609301004c37039aa45a2ca79e070.tar.gz
CanvasItem::draw_arc Clamp angle difference so arc won't overlap itself
Diffstat (limited to 'doc/classes/CanvasItem.xml')
-rw-r--r--doc/classes/CanvasItem.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/classes/CanvasItem.xml b/doc/classes/CanvasItem.xml
index e79bb97a92..5279574d5a 100644
--- a/doc/classes/CanvasItem.xml
+++ b/doc/classes/CanvasItem.xml
@@ -45,7 +45,8 @@
<param index="6" name="width" type="float" default="1.0" />
<param index="7" name="antialiased" type="bool" default="false" />
<description>
- Draws a unfilled arc between the given angles. The larger the value of [param point_count], the smoother the curve. See also [method draw_circle].
+ Draws an unfilled arc between the given angles. The larger the value of [param point_count], the smoother the curve. See also [method draw_circle].
+ The arc is drawn from [param start_angle] towards the value of [param end_angle] so in clockwise direction if [code]start_angle &lt; end_angle[/code] and counter-clockwise otherwise. Passing the same angles but in reversed order will produce the same arc. If absolute difference of [param start_angle] and [param end_angle] is greater than [constant @GDScript.TAU] radians, then a full circle arc is drawn (i.e. arc will not overlap itself).
</description>
</method>
<method name="draw_char" qualifiers="const">