- From: poot <cvsmail@w3.org>
- Date: Tue, 28 Jul 2009 08:51:37 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: Minor fixups to the bezierCurveTo() intro and make arcTo() behaviour clearer by merging two paragraphs. (whatwg r3477) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.2679&r2=1.2680&f=h http://html5.org/tools/web-apps-tracker?from=3476&to=3477 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.2679 retrieving revision 1.2680 diff -u -d -r1.2679 -r1.2680 --- Overview.html 27 Jul 2009 23:48:02 -0000 1.2679 +++ Overview.html 27 Jul 2009 23:51:14 -0000 1.2680 @@ -21316,7 +21316,7 @@ </dd> - <dt><var title="">context</var> . <code title="dom-context-2d-bezierCurveTo"><a href="#dom-context-2d-beziercurveto">bezierCurveTo</a></code>(<var title="">cpx</var>, <var title="">cpy</var>, <var title="">x</var>, <var title="">y</var>)</dt> + <dt><var title="">context</var> . <code title="dom-context-2d-bezierCurveTo"><a href="#dom-context-2d-beziercurveto">bezierCurveTo</a></code>(<var title="">cp1x</var>, <var title="">cp1y</var>, <var title="">cp2x</var>, <var title="">cp2y</var>, <var title="">x</var>, <var title="">y</var>)</dt> <dd> @@ -21491,12 +21491,12 @@ point tangent to the half-infinite line that ends at the point (<var title="">x1</var>, <var title="">y1</var>) and crosses the point (<var title="">x2</var>, <var title="">y2</var>). The points at which this circle touches these two lines are called the start and - end tangent points respectively.</p> - - <p>The method must connect the point (<var title="">x0</var>, <var title="">y0</var>) to the start tangent point by a straight line, - adding the start tangent point to the subpath, and then must connect - the start tangent point to the end tangent point by <var title="">The Arc</var>, adding the end tangent point to the - subpath.</p> + end tangent points respectively. The method must connect the point + (<var title="">x0</var>, <var title="">y0</var>) to the start + tangent point by a straight line, adding the start tangent point to + the subpath, and then must connect the start tangent point to the + end tangent point by <var title="">The Arc</var>, adding the end + tangent point to the subpath.</p> <hr><p>The <dfn id="dom-context-2d-arc" title="dom-context-2d-arc"><code>arc(<var title="">x</var>, <var title="">y</var>, <var title="">radius</var>, <var title="">startAngle</var>, <var title="">endAngle</var>, <var title="">anticlockwise</var>)</code></dfn> method draws an arc. If
Received on Monday, 27 July 2009 23:52:14 UTC