interface GraphRepBendLine {
    bendAngle: number;
    bendDescriptor: number;
    constructedInnerRadius: number;
    innerRadius: number;
    resultingInnerRadius: number;
    segments: Segment[];
}

Properties

bendAngle: number

Angle of the bend [rad]

bendDescriptor: number
constructedInnerRadius: number

Inner radius of the bend as constructed.

innerRadius: number

Legacy property - same as [[constructedInnerRadius]]

resultingInnerRadius: number

Inner radius of the bend as resulting from the current bend tool selection.

segments: Segment[]

Segments that forming the bend line.

The segments are of type line. The segments are colinear. The segments are not necessarily connected.