CogCircularArc AngleSpan Property Cognex VisionPro
Returns/sets the angle span (in radians) of this circular arc. Note that this can be positive or negative (but not exactly 0), and implies an arc direction.

Namespace: Cognex.VisionPro
Assembly: Cognex.VisionPro.Core (in Cognex.VisionPro.Core.dll) Version: 65.1.0.0
Syntax

public double AngleSpan { get; set; }

Property Value

Type: Double
Events

Event TypeReason
CogCircularArc Changed

Fires when the value of this property changes.

The following state flags may be affected:

    Exceptions

    ExceptionCondition
    ArgumentException

    Value is zero.

    Remarks

    Sets or gets the angle span of this circular arc in radians. The angle can be any positive or negative value, but not exactly 0; the sign determines the direction of the arc.

    If the absolute value of the angle span is greater than 2π, the arc wraps around on itself. It is not normalized to the range −2π to 2π

    For example, an AngleSpan of +π is an arc that describes half of a full circle, and a span of −π describes the other half in the opposite direction.

    To simply reverse the direction of an arc, you can use the following:

    AngleStart = AngleStart + AngleSpan AngleSpan = −AngleSpan

    Default Value: π/2

    See Also