@newkrok/three-particles - v2.1.0
    Preparing search index...

    Type Alias BezierPoint

    A Bézier curve point representing a control point.

    type BezierPoint = {
        percentage?: number;
        x: number;
        y: number;
    }
    Index

    Properties

    Properties

    percentage?: number

    (Optional) Normalized position within the curve (for additional flexibility).

    x: number

    The time (normalized between 0 and 1).

    y: number

    The value at that point.