UNPKG

cga.js

Version:

Xtor Compute Geometry Algorithm Libary 计算几何算法库

9 lines 240 B
import { Vec3 } from '../../math/Vec3'; export class Ray { origin: Vec3; direction: Vec3; constructor(origin: Vec3, direction: Vec3) { this.origin = origin; this.direction = direction.normalize(); } }