曲线交点
贝塞尔曲线相交算法和实用程序。
提取自裁剪实现。
安装
npm install --save curve-intersection
用法
如果你的平台还不支持 es6,你可以require('curve-intersection/es3') 。
import { curveIntersections } from 'curve-intersection' ;
// coordinates of the control points
let curves = [
[ 25.3 , 21.4 , - 93.4 , - 180.5 , 90.9 , 177.2 , - 31 , - 15.8 ] ,
[ 26.9 , - 22.6 , - 196.3 , 48.300000000000004 , 193.4 , - 52 , - 21.8 , 24 ]
] ;
let
1