Interface PolygonConstructor<TPolygon>

interface PolygonConstructor<TPolygon extends Polygon> {
    new PolygonConstructor(
        position: PotentialVector,
        points: PotentialVector[],
        options?: BodyOptions,
    ): TPolygon;
}

Type Parameters

Constructors

Constructors