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

Side by Side Diff: tools/pathops_sorter.htm

Issue 1096923003: working on initial winding for cubics (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « tests/PathOpsOpTest.cpp ('k') | tools/pathops_visualizer.htm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> 3 <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
4 <head> 4 <head>
5 <meta charset="utf-8" /> 5 <meta charset="utf-8" />
6 <title></title> 6 <title></title>
7 <div style="height:0"> 7 <div style="height:0">
8 8
9 <div id="sect1"> 9 <div id="sect1">
10 {{{3, 0}, {0, 1}, {1, 2}}}, 10 {{{5, 6}, {3, 5}, {5, 0}, {4, 3}}},
11 {{{1, 1}, {0, 2}, {3, 3}}}, 11 {{{4.5360000000000182, 1.2239999999999371}, {4.0559999999999805, 2.9040000000000 665}}}, id=1
12 {{{4.1093749999999858, 2.8125000000000586}, {4.4843750000000142, 1.3124999999999 44}}}, id=2
13 {{{8.7468579296817381, 10.411900254521452}, {0.41902943319982722, 0.943679377782 58604}}}, id=3
14 {{{4.3057224425668572, 2.0550770020134008}, {4.2925113773388723, 2.0515321686189 738}}}, id=4
15 {{4.4990035142054987, 11.169115071012422}, {3.6556891335276789, -2.8254673087358 97}}}, id=5
16 </div>
17
18 <div id="sect2">
19 {{{5, 6}, {3, 5}, {5, 0}, {4, 3}}},
20 {{{4.5360000000000182, 1.2239999999999371}, {4.0559999999999805, 2.9040000000000 665}}}, id=1
21 {{{4.1093749999999858, 2.8125000000000586}, {4.4843750000000142, 1.3124999999999 44}}}, id=2
22 </div>
23
24 <div id="sect3">
25 {{{5, 6}, {3, 5}, {5, 0}, {4, 3}}},
26 {{{8.7468579296817381, 10.411900254521452}, {0.41902943319982722, 0.943679377782 58604}}}, id=3
27 {{{4.3057224425668572, 2.0550770020134008}, {4.2925113773388723, 2.0515321686189 738}}}, id=4
28 {{4.4990035142054987, 11.169115071012422}, {3.6556891335276789, -2.8254673087358 97}}}, id=5
12 </div> 29 </div>
13 30
14 </div> 31 </div>
15 32
16 <script type="text/javascript"> 33 <script type="text/javascript">
17 34
18 var testDivs = [ 35 var testDivs = [
19 sect1, 36 sect1,
20 37 sect2,
38 sect3,
21 ]; 39 ];
22 40
23 var decimal_places = 3; 41 var decimal_places = 3;
24 42
25 var tests = []; 43 var tests = [];
26 var testTitles = []; 44 var testTitles = [];
27 var testIndex = 0; 45 var testIndex = 0;
28 var ctx; 46 var ctx;
29 47
30 var subscale = 1; 48 var subscale = 1;
(...skipping 1370 matching lines...) Expand 10 before | Expand all | Expand 10 after
1401 <body onLoad="start();"> 1419 <body onLoad="start();">
1402 1420
1403 <canvas id="canvas" width="750" height="500" 1421 <canvas id="canvas" width="750" height="500"
1404 onmousedown="mouseDown = true" 1422 onmousedown="mouseDown = true"
1405 onmouseup="mouseDown = false" 1423 onmouseup="mouseDown = false"
1406 onmousemove="handleMouseOver()" 1424 onmousemove="handleMouseOver()"
1407 onclick="handleMouseClick()" 1425 onclick="handleMouseClick()"
1408 ></canvas > 1426 ></canvas >
1409 </body> 1427 </body>
1410 </html> 1428 </html>
OLDNEW
« no previous file with comments | « tests/PathOpsOpTest.cpp ('k') | tools/pathops_visualizer.htm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698