@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
6 lines (5 loc) • 392 B
TypeScript
import { Tetrahedron, TetrahedronSphere } from '../TetCommon';
import { Vector3 } from 'three';
import { TetGeometry } from '../TetGeometry';
export declare function circumSphere(tetGeometry: TetGeometry, id0: number, id1: number, id2: number, id3: number, target: TetrahedronSphere): void;
export declare function isPointInTetCircumSphere(tetrahedron: Tetrahedron, point: Vector3): boolean;