Interface PointConstructor<TPoint>

interface PointConstructor<TPoint extends Point> {
    new PointConstructor(
        position: PotentialVector,
        options?: BodyOptions,
    ): TPoint;
}

Type Parameters

Constructors

Constructors