1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="CairoMatrix" namespace="" name="CairoMatrix">
<constructor name="__construct" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Creates a new CairoMatrix object">Object oriented style (method):</description>
<return type="void"/>
</docblock>
<parameter name="xx" optional="true" byreference="false" type="object" class="float"/>
<parameter name="yx" optional="true" byreference="false" type="object" class="float"/>
<parameter name="xy" optional="true" byreference="false" type="object" class="float"/>
<parameter name="yy" optional="true" byreference="false" type="object" class="float"/>
<parameter name="x0" optional="true" byreference="false" type="object" class="float"/>
<parameter name="y0" optional="true" byreference="false" type="object" class="float"/>
</constructor>
<method name="initIdentity" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Creates a new identity matrix">Object oriented style (method):</description>
<return type="void"/>
</docblock>
</method>
<method name="initRotate" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Creates a new rotated matrix">Object oriented style (method):</description>
<return type="void"/>
</docblock>
<parameter name="radians" optional="false" byreference="false" type="object" class="float"/>
</method>
<method name="initScale" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Creates a new scaling matrix">Object oriented style (method):</description>
<return type="void"/>
</docblock>
<parameter name="sx" optional="false" byreference="false" type="object" class="float"/>
<parameter name="sy" optional="false" byreference="false" type="object" class="float"/>
</method>
<method name="initTranslate" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Creates a new translation matrix">Object oriented style (method):</description>
<return type="void"/>
</docblock>
<parameter name="tx" optional="false" byreference="false" type="object" class="float"/>
<parameter name="ty" optional="false" byreference="false" type="object" class="float"/>
</method>
<method name="invert" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="The invert purpose"/>
<return type="void"/>
</docblock>
</method>
<method name="multiply" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="The multiply purpose"/>
<return type="CairoMatrix"/>
</docblock>
<parameter name="matrix1" optional="false" byreference="false" type="object" class="CairoMatrix"/>
<parameter name="matrix2" optional="false" byreference="false" type="object" class="CairoMatrix"/>
</method>
<method name="rotate" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="The rotate purpose">Object oriented style (method):</description>
<return type="void"/>
</docblock>
<parameter name="radians" optional="false" byreference="false" type="object" class="float"/>
</method>
<method name="scale" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Applies scaling to a matrix">Object oriented style (method):</description>
<return type="void"/>
</docblock>
<parameter name="sx" optional="false" byreference="false" type="object" class="float"/>
<parameter name="sy" optional="false" byreference="false" type="object" class="float"/>
</method>
<method name="transformDistance" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="The transformDistance purpose"/>
<return type="array"/>
</docblock>
<parameter name="dx" optional="false" byreference="false" type="object" class="float"/>
<parameter name="dy" optional="false" byreference="false" type="object" class="float"/>
</method>
<method name="transformPoint" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="The transformPoint purpose"/>
<return type="array"/>
</docblock>
<parameter name="dx" optional="false" byreference="false" type="object" class="float"/>
<parameter name="dy" optional="false" byreference="false" type="object" class="float"/>
</method>
<method name="translate" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="The translate purpose">Object oriented style (method):</description>
<return type="void"/>
</docblock>
<parameter name="tx" optional="false" byreference="false" type="object" class="float"/>
<parameter name="ty" optional="false" byreference="false" type="object" class="float"/>
</method>
</class>
|