PavelPonomarenko
PavelPonomarenko
Dont export callback sets to host object
Code: ``` js new Line(100, 100, 150, 100) .distanceTo( new Point(95, 100), false ); ``` Expected: `5` Result: `0` Description: If `point` is on infinity line it returns zero always
Here: if ( ! in_array($method, array('to', 'cc', 'bcc'))) Because `in_array(0, array('to', 'cc', 'bcc'))` equals to true It's better to use if ( ! in_array($method, array('to', 'cc', 'bcc'), true)) instead to...
The EarClipping triangulation algorithm fails depending on the order of holes. Expected Behavior: Triangulation should succeed regardless of hole order since geometrically it's the same polygon. Actual Behavior: Only succeeds...