This commit is contained in:
xiefan
2020-09-24 11:04:12 +08:00
commit b654ca8c7f
1633 changed files with 86830 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import { Vector3 } from 'three';
import { Arc } from './Entity/Arc';
import { Polyline } from './Entity/Polyline';
/**
* 点在弓型内部
*
* @param arc 二维圆弧
* @param pt 点
* @param isInChrodIsTrue 当点在弦上也认为在弓形内部
* @returns 点在内部
*/
export declare function IsPointInBowArc(arc: Arc, pt: Vector3, isInChrodIsTrue?: boolean): boolean;
/**
* 判断点在多段线内外
* @param pl 多段线
* @param pt 点
* @returns 点在多段线内部
*/
export declare function IsPointInPolyLine(pl: Polyline, pt: Vector3): boolean;
//# sourceMappingURL=PointInPolyline.d.ts.map