@rbxts/a-plant-generator - v0.2.0
    Preparing search index...

    Interface CylindricalPhyllotaxisOptions

    Cylindrical phyllotaxis controls for stems, cones, and succulent forms.

    interface CylindricalPhyllotaxisOptions {
        count: number;
        cylinderRadius?: (index: number) => number;
        divergenceAngle?: number;
        height?: (index: number) => number;
        jitter?: number;
        organRadius?: (index: number) => number;
        random?: RandomSource;
        seed?: number;
        startIndex?: number;
    }

    Hierarchy

    Index
    count: number
    cylinderRadius?: (index: number) => number

    Computes cylinder or cone radius for a mathematical organ index.

    divergenceAngle?: number
    height?: (index: number) => number

    Computes axial height for a mathematical organ index.

    jitter?: number
    organRadius?: (index: number) => number

    Computes collision radius for a mathematical organ index.

    random?: RandomSource
    seed?: number
    startIndex?: number