UNPKG

@glowjs/core

Version:

GlowJS数字孪生引擎核心库。

15 lines (14 loc) 220 B
import { Point3D } from '../misc/Point3D'; /** * 视角信息 */ export type ViewInfo = { /** * 相机位置 */ eye: Point3D; /** * 看点位置 */ target: Point3D; };