UNPKG

@glowjs/core

Version:

GlowJS数字孪生引擎核心库。

9 lines (8 loc) 251 B
import { Line } from '../Line'; import { Point } from '../Point'; /** * 获取两线段的交点 * @param segment1 线段1 * @param segment2 线段2 */ export declare function getSegmentIntersection(segment1: Line, segment2: Line): Point;