初始化版本库,可用

This commit is contained in:
2021-01-28 10:17:21 +08:00
commit d2573c0b1c
1750 changed files with 41088 additions and 0 deletions

6
types/Geometry/DoIntersect.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
import { Vec2 } from "./CheckIntersect";
/**
* 判断线段`p1q1`和线段`p2q2`是否相交.
*/
export declare function doIntersect(p1: Vec2, q1: Vec2, p2: Vec2, q2: Vec2): boolean;
//# sourceMappingURL=DoIntersect.d.ts.map