@jsfkit/types
    Preparing search index...

    Type Alias AdjustValueHandlePolar

    Polar adjustment handle for custom shapes.

    Defines an interactive handle that can be dragged to adjust shape geometry using polar coordinates (angle and radius from a center point).

    type AdjustValueHandlePolar = {
        gdRefAng?: GeomGuideName;
        gdRefR?: GeomGuideName;
        maxAng?: GeomGuideName | DmlAngle;
        maxR?: GeomGuideName | EmuValue;
        minAng?: GeomGuideName | DmlAngle;
        minR?: GeomGuideName | EmuValue;
        pos: AdjustPoint;
        type: "polar";
    }
    Index

    Properties

    gdRefAng?: GeomGuideName

    Name of the guide that this handle adjusts for angle.

    gdRefR?: GeomGuideName

    Name of the guide that this handle adjusts for radius.

    Maximum angle value allowed for this handle (in degrees or reference to guide).

    Maximum radius value allowed for this handle (in shape coordinates or reference to guide).

    Minimum angle value allowed for this handle (in degrees or reference to guide).

    Minimum radius value allowed for this handle (in shape coordinates or reference to guide).

    Position of the adjustment handle in the shape's coordinate system.

    type: "polar"

    Type discriminator for polar adjustment handles.