Vector/Vector2: Difference between revisions
Jump to navigation
Jump to search
m (Add Vector2.create) |
m (Fix typo...) |
||
Line 17: | Line 17: | ||
<section name="Shared" class="both" show="true"> | <section name="Shared" class="both" show="true"> | ||
<syntaxhighlight lang="lua">-- todo</syntaxhighlight> | <syntaxhighlight lang="lua">-- todo</syntaxhighlight> | ||
</section> | |||
===normalize=== | ===normalize=== | ||
===dot=== | ===dot=== |
Revision as of 21:41, 2 February 2015
The Vector2 class is a class introduced in 1.4
Methods
create
This is default constructor for the Vector2 class and returns a Vector2 object.
Syntax
vector2 Vector2 ( float x = 0, float y = 0 )
- x, and y coordinates for the vector. If not specified, they default to 0.
- Instead of these two coordinates, a single Vector2 object may be inserted to clone it.
Example
This example ...
Click to collapse [-]
Shared-- todo