webcad-ue4-api/types/DatabaseServices/PointInPolyline.d.ts

28 lines
807 B
TypeScript
Raw Normal View History

2022-02-16 11:15:31 +08:00
import { Vec2, Vector3 } from 'three';
2021-01-28 10:17:21 +08:00
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;
/**
2023-07-06 10:23:55 +08:00
* 线(线 false)
2021-01-28 10:17:21 +08:00
* @param pl 线
* @param pt
* @returns 线
*/
export declare function IsPointInPolyLine(pl: Polyline, pt: Vector3): boolean;
2022-02-16 11:15:31 +08:00
/**
*
*
* @param pt
* @param pts
* @returns
*/
export declare function IsPointInPolygon(pt: Vec2, pts: Vec2[]): boolean;
2021-01-28 10:17:21 +08:00
//# sourceMappingURL=PointInPolyline.d.ts.map