UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

5 lines (4 loc) 233 B
import { Vector3 } from 'three'; type DistanceFunction = (position: Vector3) => number; export declare function softBodyRayMarch(origin: Vector3, dir: Vector3, maxDist: number, distanceFunction: DistanceFunction): number; export {};