@@ -67,16 +67,43 @@ var paper = Raphael("notepad", 320, 200);</code></pre>
...
@@ -67,16 +67,43 @@ var paper = Raphael("notepad", 320, 200);</code></pre>
<h4>Usage</h4>
<h4>Usage</h4>
<preclass="javascript code"><code>var c = paper.circle(10, 10, 10); // draw a circle at coordinate 10,10 with radius of 10
<preclass="javascript code"><code>var c = paper.circle(10, 10, 10); // draw a circle at coordinate 10,10 with radius of 10
c.node.onclick = function () { c.attr("fill", "red"); };</code></pre>
c.node.onclick = function () { c.attr("fill", "red"); };</code></pre>
<h3id="remove">
remove
</h3>
<p>
Removes element from the DOM. You can’t use it after this method call.
</p>
<h4>Usage</h4>
<preclass="javascript code"><code>var c = paper.circle(10, 10, 10);
c.remove();</code></pre>
<h3id="hide">
hide
</h3>
<p>
Makes element invisible.
</p>
<h4>Usage</h4>
<preclass="javascript code"><code>var c = paper.circle(10, 10, 10);
c.hide();</code></pre>
<h3id="show">
show
</h3>
<p>
Makes element visible.
</p>
<h4>Usage</h4>
<preclass="javascript code"><code>var c = paper.circle(10, 10, 10);
c.show();</code></pre>
<h3id="rotate">
<h3id="rotate">
rotate
rotate
</h3>
</h3>
<p>
<p>
Rotates the element by the given degree from either its 0,0 corner or its center point.
Rotates the element by the given degree from its center point.
</p>
</p>
<h4>Parameters</h4>
<h4>Parameters</h4>
<ol>
<ol>
<li>degree <em>number</em> Degree of rotation (0 – 360°)</li>
<li>degree <em>number</em> Degree of rotation (0 – 360°)</li>
<li>isAbsolute <em>boolean</em> [optional] Specifies the rotation point. Use <code>true</code> to rotate the element around its center point. The default, <code>false</code>, rotates the element from its 0,0 coordinate.</li>
<li>isAbsolute <em>boolean</em> [optional] Specifies is degree is relative to previous position (<code>false</code>) or is it absolute angle (<code>true</code>)</li>
</ol>
</ol>
<h4>Usage</h4>
<h4>Usage</h4>
<preclass="javascript code"><code>var c = paper.circle(10, 10, 10);
<preclass="javascript code"><code>var c = paper.circle(10, 10, 10);
...
@@ -126,6 +153,14 @@ c.scale(.5, .75); // makes the circle half as wide, and 75% as high</code></pre
...
@@ -126,6 +153,14 @@ c.scale(.5, .75); // makes the circle half as wide, and 75% as high</code></pre
<ol>
<ol>
<li>params <em>object</em></li>
<li>params <em>object</em></li>
</ol>
</ol>
<p>or</p>
<ol>
<li>attributeName <em>string</em> in this case method returns current value for given attribute name</li>
</ol>
<p>or</p>
<ol>
<li>attributeNames <em>array</em> in this case method returns array of current values for given attribute names</li>
</ol>
<h4>Possible parameters</h4>
<h4>Possible parameters</h4>
<p>Please refer to the <ahref="http://www.w3.org/TR/SVG/"title="The W3C Recommendation for the SVG language describes these properties in detail.">SVG specification</a> for an explanation of these parameters.</p>
<p>Please refer to the <ahref="http://www.w3.org/TR/SVG/"title="The W3C Recommendation for the SVG language describes these properties in detail.">SVG specification</a> for an explanation of these parameters.</p>
<ul>
<ul>
...
@@ -474,6 +509,24 @@ var c = paper.path({stroke: "#036"}).moveTo(10, 10).lineTo(50, 50);</code></pre>
...
@@ -474,6 +509,24 @@ var c = paper.path({stroke: "#036"}).moveTo(10, 10).lineTo(50, 50);</code></pre>
</p>
</p>
<h4>Usage</h4>
<h4>Usage</h4>
<preclass="javascript code"><code>var c = paper.path({stroke: "#036"}).moveTo(10, 10).andClose();</code></pre>
<preclass="javascript code"><code>var c = paper.path({stroke: "#036"}).moveTo(10, 10).andClose();</code></pre>
<h3id="getColor">
getColor
</h3>
<p>
Returns a colour object for the next colour in spectrum
@@ -564,8 +632,7 @@ var c = paper.path({stroke: "#036"}).moveTo(10, 10).lineTo(50, 50);</code></pre>
...
@@ -564,8 +632,7 @@ var c = paper.path({stroke: "#036"}).moveTo(10, 10).lineTo(50, 50);</code></pre>
<ahref="http://creativecommons.org/licenses/by-sa/3.0/"title="Creative Commons Attribution-ShareAlike 3.0 Unported"rel="license">Some Rights Reserved</a> by <ahref="http://dmitry.baranovskiy.com/">Dmitry Baranovskiy</a>
<ahref="http://creativecommons.org/licenses/by-sa/3.0/"title="Creative Commons Attribution-ShareAlike 3.0 Unported"rel="license">Some Rights Reserved</a> by <ahref="http://dmitry.baranovskiy.com/">Dmitry Baranovskiy</a>
</h3>
</h3>
<h3id="font">
<h3id="font">
Font by <ahref="http://www.exljbris.nl">Jos Buivenga</a> · Logo by <ahref="http://wasabicube.com/">Wasabicube</a> ·
A font by <ahref="http://www.exljbris.nl">Jos Buivenga</a> | Logo by <ahref="http://wasabicube.com/">Wasabicube</a>
Work at this project started as 20% time at <ahref="http://www.atlassian.com/"title="Atlassian — Software to Track, Test & Collaborate, from Enterprises to Open Source Projects.">Atlassian</a>