All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.dagre-wrapper.intersect.intersect-line.d.ts Maven / Gradle / Ivy

Go to download

Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.

There is a newer version: 11.4.0
Show newest version
export default intersectLine;
/**
 * Returns the point at which two lines, p and q, intersect or returns undefined if they do not intersect.
 *
 * @param p1
 * @param p2
 * @param q1
 * @param q2
 */
declare function intersectLine(p1: any, p2: any, q1: any, q2: any): {
    x: number;
    y: number;
} | undefined;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy