Generate vulnerability heat map for entire body
Korean: 취약성 히트맵 생성 (Vulnerability Heat Map Generation)
Generates a 2D vulnerability map for visualization or analysis. Returns vulnerability scores (0-1 normalized) for a grid of positions.
Width of the heat map grid
Height of the heat map grid
Hour of day for meridian calculations
Current trigram stance
Meridian disruption states
2D array of vulnerability scores (0-1 normalized)
const heatMap = generateVulnerabilityHeatMap( 100, 700, // 100x700 body map 14, // 2 PM TrigramStance.GAN, // Mountain defensive stance { lung: 1.0, heart: 1.0 });// Access vulnerability at position (50, 100)const vulnerability = heatMap[100][50]; // 0-1 normalized value Copy
const heatMap = generateVulnerabilityHeatMap( 100, 700, // 100x700 body map 14, // 2 PM TrigramStance.GAN, // Mountain defensive stance { lung: 1.0, heart: 1.0 });// Access vulnerability at position (50, 100)const vulnerability = heatMap[100][50]; // 0-1 normalized value
Generate vulnerability heat map for entire body
Korean: 취약성 히트맵 생성 (Vulnerability Heat Map Generation)
Generates a 2D vulnerability map for visualization or analysis. Returns vulnerability scores (0-1 normalized) for a grid of positions.