Interface LineConstructor<TLine>

interface LineConstructor<TLine extends Line> {
    new LineConstructor(
        start: Vector,
        end: Vector,
        options?: BodyOptions,
    ): TLine;
}

Type Parameters

Constructors

Constructors