Minor changes.

This commit is contained in:
Jürg Lehni 2014-02-20 20:26:40 +01:00
parent 5a3ca88224
commit c88dc8e2aa
2 changed files with 4 additions and 4 deletions

View file

@ -81,11 +81,11 @@ var paper = new function(undefined) {
/*#*/ include('path/Path.js'); /*#*/ include('path/Path.js');
/*#*/ include('path/Path.Constructors.js'); /*#*/ include('path/Path.Constructors.js');
/*#*/ include('path/CompoundPath.js'); /*#*/ include('path/CompoundPath.js');
/*#*/ include('path/PathFlattener.js');
/*#*/ include('path/PathFitter.js');
/*#*/ if (__options.booleanOperations) { /*#*/ if (__options.booleanOperations) {
/*#*/ include('path/PathItem.Boolean.js'); /*#*/ include('path/PathItem.Boolean.js');
/*#*/ } // __options.booleanOperations /*#*/ } // __options.booleanOperations
/*#*/ include('path/PathFlattener.js');
/*#*/ include('path/PathFitter.js');
/*#*/ include('text/TextItem.js'); /*#*/ include('text/TextItem.js');
/*#*/ include('text/PointText.js'); /*#*/ include('text/PointText.js');

View file

@ -240,8 +240,8 @@ PathItem.inject(new function() {
} }
/** /**
* Private static method that returns the winding contribution of the * Private method that returns the winding contribution of the given point
* given point with respect to a given set of monotone curves. * with respect to a given set of monotone curves.
*/ */
function getWinding(point, curves, horizontal) { function getWinding(point, curves, horizontal) {
var tolerance = /*#=*/ Numerical.TOLERANCE, var tolerance = /*#=*/ Numerical.TOLERANCE,