ver
This commit is contained in:
28
types/DatabaseServices/PointInPolyline.d.ts
vendored
28
types/DatabaseServices/PointInPolyline.d.ts
vendored
@@ -1,28 +0,0 @@
|
||||
import { Vec2, 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;
|
||||
/**
|
||||
* 判断点在多段线内外(如果点在线上 则返回false)
|
||||
* @param pl 多段线
|
||||
* @param pt 点
|
||||
* @returns 点在多段线内部
|
||||
*/
|
||||
export declare function IsPointInPolyLine(pl: Polyline, pt: Vector3): boolean;
|
||||
/**
|
||||
* 点在区域内部
|
||||
*
|
||||
* @param pt
|
||||
* @param pts
|
||||
* @returns
|
||||
*/
|
||||
export declare function IsPointInPolygon(pt: Vec2, pts: Vec2[]): boolean;
|
||||
//# sourceMappingURL=PointInPolyline.d.ts.map
|
Reference in New Issue
Block a user