![]() |
Simplexus
1.0
Création d'un pavage par des simplexes de dimension N et visualisation graphique en dimension 2.
|
#include <cstddef>#include <iostream>#include <cstdlib>#include <vector>#include <string>#include <utility>#include <cassert>#include "point.hpp"#include "pavage.hpp"#include "graphicutil.hpp"#include "fileutil.hpp"Go to the source code of this file.
Macros | |
| #define | CASE_DIM(X) case X :{ Pavage<X> p(true); loadFromFile(p, file, filter); std::cout << p <<std::endl; break; } |
Functions | |
| void | testPavageDimension2 () |
| void | testDrawPavage2 (char *filepath) |
| void | testPavageConsole (unsigned int dim, char *filepath) |
| int | main (int argc, char *argv[]) |
| #define CASE_DIM | ( | X | ) | case X :{ Pavage<X> p(true); loadFromFile(p, file, filter); std::cout << p <<std::endl; break; } |
Definition at line 68 of file main_pavage.cpp.
| int main | ( | int | argc, |
| char * | argv[] | ||
| ) |
Definition at line 19 of file main_pavage.cpp.
| void testDrawPavage2 | ( | char * | filepath | ) |
Definition at line 95 of file main_pavage.cpp.
| void testPavageConsole | ( | unsigned int | dim, |
| char * | filepath | ||
| ) |
Definition at line 70 of file main_pavage.cpp.
| void testPavageDimension2 | ( | ) |