UNPKG

xtorcga

Version:

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

13 lines (12 loc) 299 B
import { Vec3 } from "src/math/Vec3"; import { TypedConstraint } from "./constraint"; /** * @description : 铰链约束 * @example : */ export declare class HingeContraint extends TypedConstraint { axis: Vec3; minAngle: number; maxAngle: number; constructor(); }