Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(862)

Side by Side Diff: tests/PathOpsTestCommon.cpp

Issue 13094010: Add implementation of path ops (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/PathOpsTestCommon.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7 #include "PathOpsTestCommon.h"
8 #include "SkPathOpsCubic.h"
9
10 void CubicToQuads(const SkDCubic& cubic, double precision, SkTDArray<SkDQuad>& q uads) {
11 SkTDArray<double> ts;
12 cubic.toQuadraticTs(precision, &ts);
13 if (ts.count() <= 1) {
14 SkDQuad quad = cubic.toQuad();
15 *quads.append() = quad;
16 return;
17 }
18 double tStart = 0;
19 for (int i1 = 0; i1 <= ts.count(); ++i1) {
20 const double tEnd = i1 < ts.count() ? ts[i1] : 1;
21 SkDCubic part = cubic.subDivide(tStart, tEnd);
22 SkDQuad quad = part.toQuad();
23 *quads.append() = quad;
24 tStart = tEnd;
25 }
26 }
27
OLDNEW
« no previous file with comments | « tests/PathOpsTestCommon.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698