Isometric Voxel Cities Collection
Isometric voxel cities with GPT Image 2. Fun experiment. void main() { string subject = "[$SUBJECT]"; // Isometric Matrix mat3 iso_matrix = mat3(0.707, 0.0, -0.707, 0.408, 1.0, 0.408, 0.0, 0.0, 0.0); vec3 pos = iso_matrix * vec3(uv, 0.0); // Quantization (Voxelization) pos = floor(pos * 10.0) / 10.0; float voxel_depth = calculate_heightmap(subject, pos); vec3 top = vec3(0.9, 0.9, 0.8); vec3 side = vec3(0.5, 0.5, 0.6); render_color = mix(side, top, step(0.5, voxel_depth)); }