@avdl/martinez
Version:
TypeScript library for polygon boolean operations
12 lines • 319 B
TypeScript
import type { Point } from './Point';
/**
* Represents a line segment with begin and end points
*/
export declare class Segment {
private beginPoint;
private endPoint;
constructor(beginPoint: Point, endPoint: Point);
begin(): Point;
end(): Point;
}
//# sourceMappingURL=Segment.d.ts.map