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

Side by Side Diff: tools/pathops_sorter.htm

Issue 1408923003: Revert of path ops: fix conic weight and partial coincidence (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 2 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/PathOpsTSectDebug.h ('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="conics"> 9 <div id="cubics">
10 {{{78.000016756859424, 4590.0127645689281}, {78, 4590.005859375}}}, 10 {{{231.80000305175781, 2084.800048828125}, {255.60000610351562, 2084.80004882812 5}, {275, 2065.39990234375}, {275, 2041.5999755859375}}},
11 {{{78.000022914349017, 4590.0165822692597}, {78.000005725317905, 4590.0082887743 229}}}, 11 {{{275, 2041.5999755859375}, {275, 2084.800048828125}, {231.80000305175781, 2084 .800048828125}}, 0.707107008},
12 {{{{83, 4595}, {78.008674621582031, 4595}, {78, 4590.005859375}}}, 0.707720578f} ,
13 {{{{84, 4596}, {78, 4596}, {78, 4590}}}, 0.707106769f},
14 </div>
15
16 <div id="conicLines">
17 {{{78.000016756859424, 4590.0127645689281}, {78, 4590.005859375}}},
18 {{{78.000022914349017, 4590.0165822692597}, {78.000005725317905, 4590.0082887743 229}}},
19 </div>
20
21 <div id="thisopp">
22 {{{78.000016756859424, 4590.0127645689281}, {78, 4590.005859375}}},
23 {{{{84, 4596}, {78, 4596}, {78, 4590}}}, 0.707106769f},
24 {{{78.0000055,4590.00813) (78.0000367,4590.02099
25 </div> 12 </div>
26 13
27 </div> 14 </div>
28 15
29 <script type="text/javascript"> 16 <script type="text/javascript">
30 17
31 var testDivs = [ 18 var testDivs = [
32 conics, 19 cubics,
33 conicLines,
34 thisopp,
35 ]; 20 ];
36 21
37 var decimal_places = 3; 22 var decimal_places = 3;
38 23
39 var tests = []; 24 var tests = [];
40 var testTitles = []; 25 var testTitles = [];
41 var testIndex = 0; 26 var testIndex = 0;
42 var ctx; 27 var ctx;
43 28
44 var subscale = 1; 29 var subscale = 1;
(...skipping 1370 matching lines...) Expand 10 before | Expand all | Expand 10 after
1415 <body onLoad="start();"> 1400 <body onLoad="start();">
1416 1401
1417 <canvas id="canvas" width="750" height="500" 1402 <canvas id="canvas" width="750" height="500"
1418 onmousedown="mouseDown = true" 1403 onmousedown="mouseDown = true"
1419 onmouseup="mouseDown = false" 1404 onmouseup="mouseDown = false"
1420 onmousemove="handleMouseOver()" 1405 onmousemove="handleMouseOver()"
1421 onclick="handleMouseClick()" 1406 onclick="handleMouseClick()"
1422 ></canvas > 1407 ></canvas >
1423 </body> 1408 </body>
1424 </html> 1409 </html>
OLDNEW
« no previous file with comments | « tests/PathOpsTSectDebug.h ('k') | tools/pathops_visualizer.htm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698