summaryrefslogtreecommitdiffstats
path: root/doc/classes/Curve2D.xml
diff options
context:
space:
mode:
authorGrosskopf <gerrit@familiegrosskopf.de>2017-10-22 22:43:35 +0200
committerGrosskopf <gerrit@familiegrosskopf.de>2017-10-23 00:39:34 +0200
commit03e2508e45dac88010dcf97d62d471b435ba4f41 (patch)
tree6ae1cfd79db8e74097052b54f429e83b6ea1f3e2 /doc/classes/Curve2D.xml
parentfc09e1436654415f7130b69d049b420d7e5e8d54 (diff)
downloadredot-engine-03e2508e45dac88010dcf97d62d471b435ba4f41.tar.gz
Added various docs, mostly mathematical basics
Diffstat (limited to 'doc/classes/Curve2D.xml')
-rw-r--r--doc/classes/Curve2D.xml3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/classes/Curve2D.xml b/doc/classes/Curve2D.xml
index 4362887be3..99ec2b7d94 100644
--- a/doc/classes/Curve2D.xml
+++ b/doc/classes/Curve2D.xml
@@ -32,6 +32,7 @@
<return type="void">
</return>
<description>
+ Removes all points from the curve.
</description>
</method>
<method name="get_bake_interval" qualifiers="const">
@@ -191,8 +192,10 @@
</methods>
<members>
<member name="_data" type="Dictionary" setter="_set_data" getter="_get_data">
+ The points describing the curve. Value is a [Dictionary] with the keys [code]in[/code], [code]out[/code], and [code]pos[/code]. The key pos is the position of a vertex of the curve, the key in is the vector from that position to the control point before this vertex, the key out is the vector from that position to the controlpoint after this vertex.
</member>
<member name="bake_interval" type="float" setter="set_bake_interval" getter="get_bake_interval">
+ The distance in pixels between two adjacent cached points. Changing it forces the cache to be recomputed the next time the [method get_baked_points] or [method get_baked_length] function is called. The smaller the distance, the more points in the cache and the more memory it will consume, so use with care.
</member>
</members>
<constants>