Interface FeretDiameter

interface FeretDiameter {
    angle: number;
    calliperLines: [[Point, Point], [Point, Point]];
    length: number;
    points: Point[];
}

Properties

angle: number

Angle between the diameter and a horizontal line in degrees.

calliperLines: [[Point, Point], [Point, Point]]

Calliper lines that pass by endpoints of Feret diameters.

length: number

Length of the diameter.

points: Point[]

Start and end point of the Feret diameter.