import Vertex from './vertex'; export default class Intersection { x: number; y: number; toSource: number; toClip: number; /** * @param {Vertex} s1 * @param {Vertex} s2 * @param {Vertex} c1 * @param {Vertex} c2 */ constructor(s1: Vertex, s2: Vertex, c1: Vertex, c2: Vertex); /** * @return {boolean} */ valid(): boolean; } //# sourceMappingURL=intersection.d.ts.map