Skip to content

Commit

Permalink
v1.13.03
Browse files Browse the repository at this point in the history
  • Loading branch information
mattlag committed Jul 1, 2019
1 parent 7b55546 commit 7a90ec3
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 7 deletions.
4 changes: 2 additions & 2 deletions dev/js/_settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
// Version
thisGlyphrStudioVersion: 'Version 1.13',
thisGlyphrStudioVersionNum: '1.13.03',
thisGlyphrStudioVersionDate: 0,
thisGlyphrStudioVersionDate: 1562030000000,

// Internal Dev Stuff
devmode: true, // global switch for all the stuff below
devmode: false, // global switch for all the stuff below
dev_sample_project: false, // load a sample project and skip open project experience
dev_current_page: false, // navigate straight to a page
dev_current_panel: false, // navigate straight to a panel
Expand Down
10 changes: 5 additions & 5 deletions dev/js/io_svg_outline_import.js
Original file line number Diff line number Diff line change
Expand Up @@ -900,14 +900,14 @@
http://www.w3.org/TR/SVG11/implnote.html#ArcImplementationNotes
*/
function convertArcToCommandToBezier(startX, startY, radiusX, radiusY, rotationDegrees, largeArcFlag, sweepFlag, endX, endY, subPath) {
debug(`\n convertArcToCommandToBezier - START`);
// debug(`\n convertArcToCommandToBezier - START`);

var startPoint = {x: startX, y: startY};
var endPoint = {x: endX, y: endY};

debug(`\t startPoint \tx: ${startPoint.x}\ty: ${startPoint.y}`);
debug(`\t endPoint \tx: ${endPoint.x}\ty: ${endPoint.y}`);
debug(`\t radius \tx: ${radiusX}\ty: ${radiusY}`);
// debug(`\t startPoint \tx: ${startPoint.x}\ty: ${startPoint.y}`);
// debug(`\t endPoint \tx: ${endPoint.x}\ty: ${endPoint.y}`);
// debug(`\t radius \tx: ${radiusX}\ty: ${radiusY}`);

// Short circuit for straight-line edge cases
if((startX === endX && startY === endY) || (!radiusX || !radiusY)) {
Expand Down Expand Up @@ -1034,7 +1034,7 @@
}
}

debug(` convertArcToCommandToBezier - END\n\n`);
// debug(` convertArcToCommandToBezier - END\n\n`);
return finalResult;
}
}
Expand Down
55 changes: 55 additions & 0 deletions dist/Glyphr_Studio_-_1.13.03.html

Large diffs are not rendered by default.

0 comments on commit 7a90ec3

Please sign in to comment.