UNPKG
@bluemath/topo
Version:
latest (0.2.2)
0.2.2
0.2.1
0.2.0
Topology module of BlueMath
github.com/bluemathsoft/bm-topo
bluemathsoft/bm-topo
@bluemath/topo
/
lib
/
edge.d.ts
13 lines
(12 loc)
•
274 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
HalfEdge
}
from
'./halfedge'
;
import
{
Vertex
}
from
'./vertex'
;
export
declare
class
Edge
{
hePlus
?:
HalfEdge
;
heMinus
?:
HalfEdge
;
curve
:
any
;
id
:
string
;
constructor
(
);
startVertex
():
Vertex
;
endVertex
():
Vertex
;
unlink
():
void
; }