@timohausmann/quadtree-ts
    Preparing search index...

    Interface CircleProps<CustomDataType>Beta

    Circle Constructor Properties

    interface CircleProps<CustomDataType = void> {
        data?: CustomDataType;
        r: number;
        x: number;
        y: number;
    }

    Type Parameters

    • CustomDataType = void

      Type of the custom data property (optional, inferred automatically).

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    Custom data

    r: number

    Radius of the circle.

    x: number

    X center of the circle.

    y: number

    Y center of the circle.