Interface BoxConstructor<TBox>

interface BoxConstructor<TBox extends Box> {
    new BoxConstructor(
        position: PotentialVector,
        width: number,
        height: number,
        options?: BodyOptions,
    ): TBox;
}

Type Parameters

  • TBox extends Box

Constructors

Constructors