This commit is contained in:
parent
4b35583782
commit
e77051ccc4
1987 changed files with 1147290 additions and 5648 deletions
13
themes/blowfish/assets/lib/mermaid/dagre-wrapper/intersect/intersect-line.d.ts
vendored
Normal file
13
themes/blowfish/assets/lib/mermaid/dagre-wrapper/intersect/intersect-line.d.ts
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
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;
|
Loading…
Add table
Add a link
Reference in a new issue