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
/
find-2-prong
/
x-for-debugging.ts
14 lines
(9 loc)
•
220 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{
PointOnShape
}
from
'../point-on-shape/point-on-shape.js'
;
/**
@internal
*/
type
TXForDebugging
= {
x
:
number
[];
y
:
PointOnShape
;
z
:
PointOnShape
;
t
:
number
; }
export
{
TXForDebugging
}