UNPKG

@glowjs/core

Version:

GlowJS数字孪生引擎核心库。

9 lines (8 loc) 264 B
import { Line } from '../Line'; import { Point } from '../Point'; /** * 求点到直线的投影距离(垂直距离、最短距离) * @param p 点p * @param line 直线 */ export declare function distanceToProjection(p: Point, line: Line): number;