UNPKG
romgrk-2d-geometry
Version:
latest (0.2.0)
0.2.0
0.1.0
Javascript library for 2d geometry
github.com/romgrk/2d-geometry
romgrk/2d-geometry
romgrk-2d-geometry
/
src
/
data_structures
/
interval-tree
/
utils
/
constants.ts
11 lines
(7 loc)
•
163 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
RB_TREE_COLOR_RED =
0
;
const
RB_TREE_COLOR_BLACK =
1
;
export
enum
Color
{ RED =
0
, BLACK =
1
, }
export
{ RB_TREE_COLOR_RED, RB_TREE_COLOR_BLACK }