ixfx
    Preparing search index...

    Options for a Vogel spiral

    type VogelSpiralOpts = {
        density?: number;
        maxPoints?: number;
        rotation?: number;
        spacing?: number;
    }
    Index

    Properties

    density?: 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.

    maxPoints?: number

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

    rotation?: number

    Rotation offset to apply, in radians. 0 by default

    spacing?: number

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