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
/
dist
/
data_structures
/
interval-tree
/
utils
/
constants.js
9 lines
(8 loc)
•
254 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
RB_TREE_COLOR_RED
=
0
;
const
RB_TREE_COLOR_BLACK
=
1
;
export
var
Color
; (
function
(
Color
) {
Color
[
Color
[
"RED"
] =
0
] =
"RED"
;
Color
[
Color
[
"BLACK"
] =
1
] =
"BLACK"
; })(
Color
|| (
Color
= {}));
export
{
RB_TREE_COLOR_RED
,
RB_TREE_COLOR_BLACK
};