↓ 2 callersFunctionget_2x2_neighbors Get all 8 exterior neighbors of a 2x2 tile. For a 2x2 at (x,y), (x+1,y), (x,y+1), (x+1,y+1): - Top: (x, y-1), (x+1, y-1) - Bottom: (x, y+2),
src/isometric_nyc/generation/make_rectangle_plan.py:143
↓ 2 callersFunctionget_tile_quadrants Get all 4 quadrant coordinates for a tile anchored at (anchor_x, anchor_y). Returns: List of (x, y) tuples for TL, TR, BL, BR quadrants
src/isometric_nyc/generation/generate_tile_omni.py:89
↓ 2 callersFunctionget_tile_quadrants Get all 4 quadrant coordinates for a tile anchored at (anchor_x, anchor_y). Returns: List of (x, y) tuples for TL, TR, BL, BR quadrants
src/isometric_nyc/generation/generate_tile_nano_banana.py:228
↓ 2 callersFunctionparse_quadrant_list Parse a comma-separated list of quadrant tuples. Args: s: String like "(0,1),(0,2)" or "(0,1), (0,2)" Returns: List of (x, y) coo
src/isometric_nyc/generation/generate_omni.py:92