OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. |
3 * Copyright (C) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies) |
4 * Copyright (C) 2007 Alp Toker <alp@atoker.com> | 4 * Copyright (C) 2007 Alp Toker <alp@atoker.com> |
5 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 5 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
6 * Copyright (C) 2008 Dirk Schulze <krit@webkit.org> | 6 * Copyright (C) 2008 Dirk Schulze <krit@webkit.org> |
7 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. | 7 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. |
8 * Copyright (C) 2012 Intel Corporation. All rights reserved. | 8 * Copyright (C) 2012 Intel Corporation. All rights reserved. |
9 * Copyright (C) 2012, 2013 Adobe Systems Incorporated. All rights reserved. | 9 * Copyright (C) 2012, 2013 Adobe Systems Incorporated. All rights reserved. |
10 * | 10 * |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
123 FloatPoint p2 = FloatPoint(x2, y2); | 123 FloatPoint p2 = FloatPoint(x2, y2); |
124 | 124 |
125 if (!m_path.hasCurrentPoint()) | 125 if (!m_path.hasCurrentPoint()) |
126 m_path.moveTo(p1); | 126 m_path.moveTo(p1); |
127 else if (p1 == m_path.currentPoint() || p1 == p2 || !r) | 127 else if (p1 == m_path.currentPoint() || p1 == p2 || !r) |
128 lineTo(x1, y1); | 128 lineTo(x1, y1); |
129 else | 129 else |
130 m_path.addArcTo(p1, p2, r); | 130 m_path.addArcTo(p1, p2, r); |
131 } | 131 } |
132 | 132 |
133 void CanvasPathMethods::arc(float x, float y, float r, float sa, float ea, bool anticlockwise, ExceptionCode& ec) | 133 static float adjustEndAngle(float startAngle, float endAngle, bool anticlockwise ) |
134 { | |
135 float twoPi = 2 * piFloat; | |
136 /* http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-el ement.html#dom-context-2d-arc | |
137 * If the anticlockwise argument is false and endAngle-startAngle is equal t o or greater than 2π, or, | |
138 * if the anticlockwise argument is true and startAngle-endAngle is equal to or greater than 2π, | |
139 * then the arc is the whole circumference of this ellipse. | |
140 */ | |
141 if (!anticlockwise && endAngle - startAngle >= twoPi) | |
142 return startAngle + twoPi + fmodf(endAngle - startAngle, twoPi); | |
143 if (anticlockwise && startAngle - endAngle >= twoPi) | |
144 return startAngle - twoPi - fmodf(startAngle - endAngle, twoPi); | |
145 | |
146 /* | |
147 * Otherwise, the arc is the path along the circumference of this ellipse fr om the start point to the end point, | |
148 * going anti-clockwise if the anticlockwise argument is true, and clockwise otherwise. | |
149 * Since the points are on the ellipse, as opposed to being simply angles fr om zero, | |
150 * the arc can never cover an angle greater than 2π radians. | |
151 */ | |
152 if (!anticlockwise && startAngle > endAngle) | |
153 return startAngle + (twoPi - fmodf(startAngle - endAngle, twoPi)); | |
alph
2013/07/10 13:06:29
I might think of a rare corner case when e.g.
anti
dshwang
2013/07/10 13:36:42
Wow, you have eagle eye. If you want to follow the
| |
154 if (anticlockwise && startAngle < endAngle) | |
155 return startAngle - (twoPi - fmodf(endAngle - startAngle, twoPi)); | |
156 | |
157 return endAngle; | |
158 } | |
159 | |
160 void CanvasPathMethods::arc(float x, float y, float radius, float startAngle, fl oat endAngle, bool anticlockwise, ExceptionCode& ec) | |
134 { | 161 { |
135 ec = 0; | 162 ec = 0; |
136 if (!std::isfinite(x) || !std::isfinite(y) || !std::isfinite(r) || !std::isf inite(sa) || !std::isfinite(ea)) | 163 if (!std::isfinite(x) || !std::isfinite(y) || !std::isfinite(radius) || !std ::isfinite(startAngle) || !std::isfinite(endAngle)) |
137 return; | 164 return; |
138 | 165 |
139 if (r < 0) { | 166 if (radius < 0) { |
140 ec = IndexSizeError; | 167 ec = IndexSizeError; |
141 return; | 168 return; |
142 } | 169 } |
143 | 170 |
144 if (!r || sa == ea) { | |
145 // The arc is empty but we still need to draw the connecting line. | |
146 lineTo(x + r * cosf(sa), y + r * sinf(sa)); | |
147 return; | |
148 } | |
149 | |
150 if (!isTransformInvertible()) | 171 if (!isTransformInvertible()) |
151 return; | 172 return; |
152 | 173 |
153 // If 'sa' and 'ea' differ by more than 2Pi, just add a circle starting/endi ng at 'sa'. | 174 if (!radius || startAngle == endAngle) { |
154 if (anticlockwise && sa - ea >= 2 * piFloat) { | 175 // The arc is empty but we still need to draw the connecting line. |
155 m_path.addArc(FloatPoint(x, y), r, sa, sa - 2 * piFloat, anticlockwise); | 176 lineTo(x + radius * cosf(startAngle), y + radius * sinf(startAngle)); |
156 return; | |
157 } | |
158 if (!anticlockwise && ea - sa >= 2 * piFloat) { | |
159 m_path.addArc(FloatPoint(x, y), r, sa, sa + 2 * piFloat, anticlockwise); | |
160 return; | 177 return; |
161 } | 178 } |
162 | 179 |
163 m_path.addArc(FloatPoint(x, y), r, sa, ea, anticlockwise); | 180 float adjustedEndAngle = adjustEndAngle(startAngle, endAngle, anticlockwise) ; |
181 m_path.addArc(FloatPoint(x, y), radius, startAngle, adjustedEndAngle, anticl ockwise); | |
164 } | 182 } |
165 | 183 |
166 void CanvasPathMethods::rect(float x, float y, float width, float height) | 184 void CanvasPathMethods::rect(float x, float y, float width, float height) |
167 { | 185 { |
168 if (!isTransformInvertible()) | 186 if (!isTransformInvertible()) |
169 return; | 187 return; |
170 | 188 |
171 if (!std::isfinite(x) || !std::isfinite(y) || !std::isfinite(width) || !std: :isfinite(height)) | 189 if (!std::isfinite(x) || !std::isfinite(y) || !std::isfinite(width) || !std: :isfinite(height)) |
172 return; | 190 return; |
173 | 191 |
174 if (!width && !height) { | 192 if (!width && !height) { |
175 m_path.moveTo(FloatPoint(x, y)); | 193 m_path.moveTo(FloatPoint(x, y)); |
176 return; | 194 return; |
177 } | 195 } |
178 | 196 |
179 m_path.addRect(FloatRect(x, y, width, height)); | 197 m_path.addRect(FloatRect(x, y, width, height)); |
180 } | 198 } |
181 } | 199 } |
OLD | NEW |