Skip to content

Commit b304fb2

Browse files
committed
Missed file
1 parent 519d1a2 commit b304fb2

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import {colors as globalColors} from '../../components/DataStructures/colors';
2+
3+
// Colors for array (..._A), graph nodes (..._N), graph edges (..._E)
4+
// for convex hull algorithms gwrap only for now, no array
5+
// See also graphSearchColours.js
6+
export const colorsCH = {
7+
// HULL_A: globalColors.leaf,
8+
HULLP_N: 1, // Green
9+
HULL_E: 1,
10+
// FRONTIER_A: '0', // Blue
11+
// FRONTIER_A: globalColors.sky,
12+
NEXTQ_N: 4, // Blue
13+
CLOCKWISE_E: 4, // Blue
14+
ANTICLOCK_E: 3, // anticlockwise edges, Red
15+
// PQ_MIN_A: globalColors.peach,
16+
// if we find a path to end node:
17+
// SUCCESS_A: globalColors.leaf,
18+
// SUCCESS_E: 3,
19+
}

0 commit comments

Comments
 (0)