Moka libraries
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
topologic-view.hh
Go to the documentation of this file.
1 /*
2  * lib-spamod : Visualisation des objets en discret.
3  * Copyright (C) 2004, Moka Team, Université de Poitiers, Laboratoire SIC
4  * http://www.sic.sp2mi.univ-poitiers.fr/
5  * Copyright (C) 2009, Guillaume Damiand, CNRS, LIRIS,
6  * guillaume.damiand@liris.cnrs.fr, http://liris.cnrs.fr/
7  *
8  * This file is part of lib-spamod
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Lesser General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * along with this program. If not, see <http://www.gnu.org/licenses/>.
22  */
23 
24 /******************************************************************************
25  * Fichier : Topologic_View.h *
26  * Auteur : DEXET Martine *
27  *----------------------------------------------------------------------------*
28  * Ce fichier contient la spécification de la classe Topologic_View. Cette *
29  * classe permet de construire et d'afficher les éléments constituants la vue *
30  * topologique d'un objets. *
31  * *
32  *****************************************************************************/
33 
34 
35 #ifndef TOPOLOGIC_VIEW_H
36 #define TOPOLOGIC_VIEW_H
37 
38 #include "g-map.hh"
39 
40 
41 
42 /******************************************************************************
43  * Classe Topologic_View *
44  *****************************************************************************/
45 
46 namespace GMap3d
47 {
48 
50 
51  public:
52 
53  // Constructeur.
54  Topologic_View(CGMap * GM);
55 
56  // Calcul des coordonnées des points à afficher (un point par brin) pour que
57  // les liaisons alpha0, alpha1 et alpha2 soient visibles.
58  void Create_Face_Darts_View(CDart * dgm, int markDart);
59 
60  // Calcul des coordonnées des points à afficher (un point par brin) pour que
61  // les liaisons alpha3 soient visibles.
62  void Create_Volume_Darts_View(CDart * dgm, int markVolume);
63 
64  // Calcul des coordonnées des points à afficher pour représenter les brins.
65  void Create_Darts_View();
66 
67  // Affichage des brins.
68  void Darts_Draw();
69 
70  // Affichage des liaison "alpha i".
71  void Alpha_Draw(int i);
72 
73 
74  private:
75 
76  // G-carte devant être visualisée.
77  CGMap * G;
78 
79 };
80 
81 } // namespace GMap3d
82 
83 #endif