Visualizing maps in 3D space



Designed to deepen the understanding of computer graphics leveraging MiniLibX graphics library, FdF is a 3D wireframe renderer. It serves as an educational tool, offering hands-on experience in transforming and projecting 3D objects onto a 2D screen. The project is meticulously structured to cover key concepts in graphics, including projections, rotations, and color representation.
- Operating System: Linux or macOS
- Libraries:
- ft_printf(Custom library that imitates printf)
- libft (Custom library with various utility functions)
- MiniLibX MacOS (Minimalist graphics library for MacOS)
- MiniLibX Linux (Minimalist graphics library for Linux)
-
Clone the Repository:
git clone https://github.com/kbly538/FdF.git cd FdF
-
Build the Project
make
-
Run the Program
./fdf [map_file]
-
Example Map File
0 0 0 0 0 0 9 9 7 0 0 0 6 0 0
Each number represents a point in space:
• The horizontal position corresponds to its axis.
• The vertical position corresponds to its ordinate.
• The value corresponds to its altitude.
Replace [map_file]
with the path to your desired map file.
- 3D Wireframe Rendering: FdF employs 3D wireframe rendering to visualize maps.
- Projections: Supports various projections, including isometric and parallel projections.
- Coloring: Maps can be colored based on height or custom palettes.
- User Controls: Interactive controls for zooming, panning, and rotating the view.
- Information Screen: Displays real-time information about rendering, angles, and more.
- Dynamic Updates: Real-time updates and rendering with keyboard and mouse controls.
- Map Loading: Supports loading maps from file for dynamic rendering.
- Auto-Rotation: Option for automatic rotation of the map.
Hold RMB and drag:
Panning the 3D scene. (After activating Free Projection)Mouse Wheel:
Zoom in and out.Space + RMB and drag:
Reset the view to default.
1, 2, 3 ,4:
Isometric, Parallel, Free, Topdown respectively.Q, A:
Rotate around X axis. (Free Projection)W, S:
Rotate around Y axis. (Free Projection)E, D:
Rotate around Z axis. (Free Projection)Z, X:
Change height multiplierEnter:
Toggle auto-rotation. (Free Projection)ESC:
Close the program.