Merge ssh://repo.or.cz/srv/git/polylib
[polylib.git] / applications / r2p.c
blob386daea1dad4b4ae1dbbd86b120f45553e31eb41
1 /* Rays 2 Polyhedron
2 */
3 /*
4 This file is part of PolyLib.
6 PolyLib is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 PolyLib is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with PolyLib. If not, see <http://www.gnu.org/licenses/>.
21 #define WS 0
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <polylib/polylib.h>
27 int main() {
29 Matrix *R;
30 Polyhedron *P;
32 R = Matrix_Read();
33 if(R->NbColumns < 2) {
34 printf("Wrong input: %d columns\n", R->NbColumns );
35 Matrix_Free(R);
36 exit(1);
38 P = Rays2Polyhedron(R,WS);
39 Matrix_Free(R);
40 Polyhedron_Print(stdout,P_VALUE_FMT,P);
41 Domain_Free(P);
42 return 0;