UNPKG
@davepagurek/flo-mat
Version:
latest (3.0.2)
3.0.2
3.0.1
Medial / Scale Axis Transform (MAT/SAT) Library.
github.com/FlorisSteenkamp/mat
FlorisSteenkamp/mat
@davepagurek/flo-mat
/
src
/
closest-boundary-point
/
foot-and-endpoint-info.ts
17 lines
(12 loc)
•
283 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
{
RootInterval
}
from
"flo-poly"
;
import
{
Curve
}
from
"../curve/curve"
;
type
FootAndEndpointInfo
= {
curve
:
Curve
;
p
:
number
[];
t
:
number
;
d
:
number
;
box
:
number
[][];
// ri: RootInterval;
dSquaredI
:
number
[]; }
export
{
FootAndEndpointInfo
}