Skip to content
/ fdf Public

[fdf] project school 42. Project to learn about 3d programming. The program takes a map as parameter and creates its 3d representation.

Notifications You must be signed in to change notification settings

osmosx/fdf

Repository files navigation

fdf

It is a project to learn about 3d programming. The program takes a map as parameter and creates its 3d representation. MiniLibX library required.

      In this project you will discover the basics of graphic programming, and in particular how to place points in space, how to join them with segments and most importantly how to observe the scene from a particular viewpoint.

      You will also discover your first graphic library: minilibx. This library was developed internally and includes the minimum necessary to open a window, light a pixel and deal with events linked to this window: keyboard and mouse. This project introduces you to “events” programming. -pedago@42.fr

fdf

Usage

Running make to generate the fdf executable. You can run the program with ./fdf [valid_fdf_file].

A valid fdf file will consist of a matrix of number delimited by spaces. Each number's position represents an (x , y) coordinate with the value of the number itself representing a height (z).

Valid fdf files will always have the same number of elements per row.

Example:

$> cat -e 42.fdf
0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0$
0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0$
0  0 10 10  0  0 10 10  0  0  0 10 10 10 10 10  0  0  0$
0  0 10 10  0  0 10 10  0  0  0  0  0  0  0 10 10  0  0$
0  0 10 10  0  0 10 10  0  0  0  0  0  0  0 10 10  0  0$
0  0 10 10 10 10 10 10  0  0  0  0 10 10 10 10  0  0  0$
0  0  0 10 10 10 10 10  0  0  0 10 10  0  0  0  0  0  0$
0  0  0  0  0  0 10 10  0  0  0 10 10  0  0  0  0  0  0$
0  0  0  0  0  0 10 10  0  0  0 10 10 10 10 10 10  0  0$
0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0$
0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0$
$>

About

[fdf] project school 42. Project to learn about 3d programming. The program takes a map as parameter and creates its 3d representation.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published