UNPKG

@glowjs/core

Version:

GlowJS数字孪生引擎核心库。

8 lines (7 loc) 192 B
import { Point } from '../Point'; /** * 点乘(顺序无关) * @param left 左向量 * @param right 右向量 */ export declare function dot(left: Point, right: Point): number;