import Edge from "./Circular/Edge"; import Vector2d from "./Primitives/Vector2d"; import {List} from "./Utils"; export default class EdgeResult { public readonly Edge: Edge; public readonly Polygon: List; constructor(edge: Edge, polygon: List) { this.Edge = edge; this.Polygon = polygon; } }