UNPKG

xtorcga

Version:

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

13 lines (12 loc) 290 B
import { Vec3 } from "src/math/Vec3"; import { TypedConstraint } from "./constraint"; /** * @description : 滑块约束 * @example : */ export declare class SliderConstraint extends TypedConstraint { axis: Vec3; min: number; max: number; constructor(); }