|
@@ -23,14 +23,14 @@
|
|
|
<tutorials>
|
|
|
</tutorials>
|
|
|
<methods>
|
|
|
- <method name="int">
|
|
|
+ <method name="int" qualifiers="constructor">
|
|
|
<return type="int">
|
|
|
</return>
|
|
|
<description>
|
|
|
Constructs a default-initialized [int] set to [code]0[/code].
|
|
|
</description>
|
|
|
</method>
|
|
|
- <method name="int">
|
|
|
+ <method name="int" qualifiers="constructor">
|
|
|
<return type="int">
|
|
|
</return>
|
|
|
<argument index="0" name="from" type="int">
|
|
@@ -39,7 +39,7 @@
|
|
|
Constructs an [int] as a copy of the given [int].
|
|
|
</description>
|
|
|
</method>
|
|
|
- <method name="int">
|
|
|
+ <method name="int" qualifiers="constructor">
|
|
|
<return type="int">
|
|
|
</return>
|
|
|
<argument index="0" name="from" type="bool">
|
|
@@ -48,7 +48,7 @@
|
|
|
Cast a [bool] value to an integer value, [code]int(true)[/code] will be equals to 1 and [code]int(false)[/code] will be equals to 0.
|
|
|
</description>
|
|
|
</method>
|
|
|
- <method name="int">
|
|
|
+ <method name="int" qualifiers="constructor">
|
|
|
<return type="int">
|
|
|
</return>
|
|
|
<argument index="0" name="from" type="float">
|
|
@@ -57,6 +57,280 @@
|
|
|
Cast a float value to an integer value, this method simply removes the number fractions, so for example [code]int(2.7)[/code] will be equals to 2, [code]int(.1)[/code] will be equals to 0 and [code]int(-2.7)[/code] will be equals to -2.
|
|
|
</description>
|
|
|
</method>
|
|
|
+ <method name="operator !=" qualifiers="operator">
|
|
|
+ <return type="bool">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="float">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator !=" qualifiers="operator">
|
|
|
+ <return type="bool">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="int">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator %" qualifiers="operator">
|
|
|
+ <return type="int">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="int">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator &" qualifiers="operator">
|
|
|
+ <return type="int">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="int">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator *" qualifiers="operator">
|
|
|
+ <return type="float">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="float">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator *" qualifiers="operator">
|
|
|
+ <return type="int">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="int">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator *" qualifiers="operator">
|
|
|
+ <return type="Vector2">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="Vector2">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator *" qualifiers="operator">
|
|
|
+ <return type="Vector2i">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="Vector2i">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator *" qualifiers="operator">
|
|
|
+ <return type="Vector3">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="Vector3">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator *" qualifiers="operator">
|
|
|
+ <return type="Vector3i">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="Vector3i">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator *" qualifiers="operator">
|
|
|
+ <return type="Quat">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="Quat">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator *" qualifiers="operator">
|
|
|
+ <return type="Color">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="Color">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator +" qualifiers="operator">
|
|
|
+ <return type="int">
|
|
|
+ </return>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator +" qualifiers="operator">
|
|
|
+ <return type="float">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="float">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator +" qualifiers="operator">
|
|
|
+ <return type="int">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="int">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator -" qualifiers="operator">
|
|
|
+ <return type="int">
|
|
|
+ </return>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator -" qualifiers="operator">
|
|
|
+ <return type="float">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="float">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator -" qualifiers="operator">
|
|
|
+ <return type="int">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="int">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator /" qualifiers="operator">
|
|
|
+ <return type="float">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="float">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator /" qualifiers="operator">
|
|
|
+ <return type="int">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="int">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator <" qualifiers="operator">
|
|
|
+ <return type="bool">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="float">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator <" qualifiers="operator">
|
|
|
+ <return type="bool">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="int">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator <<" qualifiers="operator">
|
|
|
+ <return type="int">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="int">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator <=" qualifiers="operator">
|
|
|
+ <return type="bool">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="float">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator <=" qualifiers="operator">
|
|
|
+ <return type="bool">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="int">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator ==" qualifiers="operator">
|
|
|
+ <return type="bool">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="float">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator ==" qualifiers="operator">
|
|
|
+ <return type="bool">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="int">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator >" qualifiers="operator">
|
|
|
+ <return type="bool">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="float">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator >" qualifiers="operator">
|
|
|
+ <return type="bool">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="int">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator >=" qualifiers="operator">
|
|
|
+ <return type="bool">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="float">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator >=" qualifiers="operator">
|
|
|
+ <return type="bool">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="int">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator >>" qualifiers="operator">
|
|
|
+ <return type="int">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="int">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator ^" qualifiers="operator">
|
|
|
+ <return type="int">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="int">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator |" qualifiers="operator">
|
|
|
+ <return type="int">
|
|
|
+ </return>
|
|
|
+ <argument index="0" name="right" type="int">
|
|
|
+ </argument>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
+ <method name="operator ~" qualifiers="operator">
|
|
|
+ <return type="int">
|
|
|
+ </return>
|
|
|
+ <description>
|
|
|
+ </description>
|
|
|
+ </method>
|
|
|
</methods>
|
|
|
<constants>
|
|
|
</constants>
|