Rename the argument tag to param in XML documentation
This commit is contained in:
@ -14,22 +14,22 @@
|
||||
</constructor>
|
||||
<constructor name="Vector4i">
|
||||
<return type="Vector4i" />
|
||||
<argument index="0" name="from" type="Vector4i" />
|
||||
<param index="0" name="from" type="Vector4i" />
|
||||
<description>
|
||||
</description>
|
||||
</constructor>
|
||||
<constructor name="Vector4i">
|
||||
<return type="Vector4i" />
|
||||
<argument index="0" name="from" type="Vector4" />
|
||||
<param index="0" name="from" type="Vector4" />
|
||||
<description>
|
||||
</description>
|
||||
</constructor>
|
||||
<constructor name="Vector4i">
|
||||
<return type="Vector4i" />
|
||||
<argument index="0" name="x" type="int" />
|
||||
<argument index="1" name="y" type="int" />
|
||||
<argument index="2" name="z" type="int" />
|
||||
<argument index="3" name="w" type="int" />
|
||||
<param index="0" name="x" type="int" />
|
||||
<param index="1" name="y" type="int" />
|
||||
<param index="2" name="z" type="int" />
|
||||
<param index="3" name="w" type="int" />
|
||||
<description>
|
||||
</description>
|
||||
</constructor>
|
||||
@ -42,8 +42,8 @@
|
||||
</method>
|
||||
<method name="clamp" qualifiers="const">
|
||||
<return type="Vector4i" />
|
||||
<argument index="0" name="min" type="Vector4i" />
|
||||
<argument index="1" name="max" type="Vector4i" />
|
||||
<param index="0" name="min" type="Vector4i" />
|
||||
<param index="1" name="max" type="Vector4i" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
@ -100,103 +100,103 @@
|
||||
<operators>
|
||||
<operator name="operator !=">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Vector4i" />
|
||||
<param index="0" name="right" type="Vector4i" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator %">
|
||||
<return type="Vector4i" />
|
||||
<argument index="0" name="right" type="Vector4i" />
|
||||
<param index="0" name="right" type="Vector4i" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator %">
|
||||
<return type="Vector4i" />
|
||||
<argument index="0" name="right" type="int" />
|
||||
<param index="0" name="right" type="int" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator *">
|
||||
<return type="Vector4i" />
|
||||
<argument index="0" name="right" type="Vector4i" />
|
||||
<param index="0" name="right" type="Vector4i" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator *">
|
||||
<return type="Vector4" />
|
||||
<argument index="0" name="right" type="float" />
|
||||
<param index="0" name="right" type="float" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator *">
|
||||
<return type="Vector4i" />
|
||||
<argument index="0" name="right" type="int" />
|
||||
<param index="0" name="right" type="int" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator +">
|
||||
<return type="Vector4i" />
|
||||
<argument index="0" name="right" type="Vector4i" />
|
||||
<param index="0" name="right" type="Vector4i" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator -">
|
||||
<return type="Vector4i" />
|
||||
<argument index="0" name="right" type="Vector4i" />
|
||||
<param index="0" name="right" type="Vector4i" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator /">
|
||||
<return type="Vector4i" />
|
||||
<argument index="0" name="right" type="Vector4i" />
|
||||
<param index="0" name="right" type="Vector4i" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator /">
|
||||
<return type="Vector4" />
|
||||
<argument index="0" name="right" type="float" />
|
||||
<param index="0" name="right" type="float" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator /">
|
||||
<return type="Vector4i" />
|
||||
<argument index="0" name="right" type="int" />
|
||||
<param index="0" name="right" type="int" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator <">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Vector4i" />
|
||||
<param index="0" name="right" type="Vector4i" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator <=">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Vector4i" />
|
||||
<param index="0" name="right" type="Vector4i" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator ==">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Vector4i" />
|
||||
<param index="0" name="right" type="Vector4i" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator >">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Vector4i" />
|
||||
<param index="0" name="right" type="Vector4i" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator >=">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Vector4i" />
|
||||
<param index="0" name="right" type="Vector4i" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator []">
|
||||
<return type="int" />
|
||||
<argument index="0" name="index" type="int" />
|
||||
<param index="0" name="index" type="int" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
|
||||
Reference in New Issue
Block a user