ixfx
    Preparing search index...

    Type Alias PolarRay

    PolarRay: Readonly<
        { angleRadian: number; length: number; offset: number; origin?: Point },
    >

    A polar ray is allows you to express a line in polar coordinates

    It consists of an angle (in radians) with a given offset and length.

    • angleRadian: Angle of line
    • Offset: distance from the polar origin (default: 0)
    • Length: length of ray
    • Origin: Start Cartesian coordinate of line