craiyon logo

Vibrant abstract network of glowing colorful nodes, lines, and geometric shapes (circles, squares, triangles, hexagons) against a dark background.

Vibrant abstract network of glowing colorful nodes, lines, and geometric shapes (circles, squares, triangles, hexagons) against a dark background.

import matplotlib.pyplot as plt import networkx as nx import numpy as np from matplotlib.patches import Circle, Wedge, Polygon from matplotlib.collections import PatchCollection import matplotlib.patches as mpatches # ====================== # 1. DATA DEFINITION # ====================== masteries = { # Foundation Layer "ARGON": {"layer": 0, "category": "Foundation", "color": "#8A2BE2", "desc": "Logic/Evidence"}, "BROWN": {"layer": 0, "category": "Foundation", "color": "#8B4513", "desc": "Truth Acceptance"}, "GREY": {"layer": 0, "category": "Foundation", "color": "#808080", "desc": "Stress Testing"}, # Cognitive Core Layer "BLACK": {"layer": 1, "category": "Cognitive", "color": "#000000", "desc": "Discipline/Focus"}, "MAGENTA": {"layer": 1, "category": "Cognitive", "color": "#FF00FF", "desc": "Paradox/Innovation"}, "WHITE": {"layer": 1, "category": "Cognitive", "color": "#FFFFFF", "desc": "Clarity/Structure"}, "BLUE": {"layer": 1, "category": "Cognitive", "color": "#0000FF", "desc": "Precision/Analysis"}, "EMERALD": {"layer": 1, "category": "Cognitive", "color": "#50C878", "desc": "Perspective/Empathy"}, "AMBER": {"layer": 1, "category": "Cognitive", "color": "#FFBF00", "desc": "Calculation/Decision"}, "PURPLE": {"layer": 1, "category": "Cognitive", "color": "#800080", "desc": "Simulation/Planning"}, "RED": {"layer": 1, "category": "Cognitive", "color": "#FF0000", "desc": "Execution/Action"}, "YELLOW": {"layer": 1, "category": "Cognitive", "color": "#FFFF00", "desc": See more