UNPKG

@glowjs/core

Version:

GlowJS数字孪生引擎核心库。

9 lines (8 loc) 224 B
import { Line } from '../Line'; import { Point } from '../Point'; /** * 判断点是否在线段上 * @param p 点p * @param segment 线段 */ export declare function onSegment(p: Point, segment: Line): boolean;