ixfx
    Preparing search index...

    Type Alias VogelSpiralOpts

    VogelSpiralOpts: {
        density?: number;
        maxPoints?: number;
        rotation?: number;
        spacing?: number;
    }

    Options for a Vogel spiral

    Type declaration

    • Optional Readonlydensity?: number

      Density value (0..1) which determines spacing of points. This is useful because it scales with whatever circle radius is given Use this parameter OR the spacing parameter.

    • Optional ReadonlymaxPoints?: number

      Upper limit of points to produce. By default, 5000.

    • Optional Readonlyrotation?: number

      Rotation offset to apply, in radians. 0 by default

    • Optional Readonlyspacing?: number

      Spacing between points. Use this option OR the density value.