Moka libraries
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
ineq-table-6.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 : Ineq_Table6.h *
26  * Auteur : DEXET Martine *
27  *----------------------------------------------------------------------------*
28  * Ce fichier contient la spécification de la classe Ineq_Table6. Cette *
29  * classe permet de représenter un tableau d'inéquations, comportant six *
30  * éléments. *
31  * *
32  *****************************************************************************/
33 
34 
35 #ifndef INEQ_TABLE6_H
36 #define INEQ_TABLE6_H
37 
38 #include "inequation.hh"
39 
40 
41 
42 /******************************************************************************
43  * Classe Ineq_Table6 *
44  *****************************************************************************/
45 
46 class Ineq_Table6 {
47 
48  public:
49 
50  // constructeurs.
51  Ineq_Table6();
52  Ineq_Table6(Ineq_Table6 const & other);
53  Ineq_Table6(CVertex const & p);
54  Ineq_Table6(CVertex const & p1, CVertex const & p2);
55 
56  // Méthode permettant la lecture d'une des équation du tableau.
57  Inequation * Get_Ineq(int num);
58 
59  // Méthode permettant l'écriture d'une équation dans le tableau.
60  void Set_Ineq(int num, Inequation const & i);
61 
62 
63  private:
64 
65  // Tableau comportant six cases, et contenant des objets de la classe
66  // Inequation.
67  Inequation tab[6];
68 };
69 
70 /******************************************************************************
71  * Fichier : Ineq_Table6.inl *
72  * Auteur : DEXET Martine *
73  *----------------------------------------------------------------------------*
74  * Ce fichier contient l'implémentation des méthodes de la classe *
75  * Ineq_Table6. *
76  * *
77  *****************************************************************************/
78 
79 
80 
81 // constructeurs.
82 inline
84 {}
85 
86 inline
88 {
89  for (int i=0; i<6; i++)
90  tab[i] = other.tab[i];
91 }
92 
93 inline
94 Ineq_Table6::Ineq_Table6(CVertex const & p)
95 {
96  tab[1].SetB(0);
97  tab[0].SetB(0);
98  tab[1].SetC(0);
99  tab[0].SetC(0);
100 
101  tab[0].SetA(1);
102  tab[1].SetA(-1);
103  tab[0].SetW(p.getX() + 0.5);
104  tab[1].SetW(0.5 - p.getX());
105 
106  tab[3].SetA(0);
107  tab[2].SetA(0);
108  tab[3].SetC(0);
109  tab[2].SetC(0);
110 
111  tab[2].SetB(1);
112  tab[3].SetB(-1);
113  tab[2].SetW(p.getY() + 0.5);
114  tab[3].SetW(0.5 - p.getY());
115 
116  tab[5].SetB(0);
117  tab[4].SetB(0);
118  tab[5].SetA(0);
119  tab[4].SetA(0);
120 
121  tab[4].SetC(1);
122  tab[5].SetC(-1);
123  tab[4].SetW(p.getZ() + 0.5);
124  tab[5].SetW(0.5 - p.getZ());
125 }
126 
127 inline
128 Ineq_Table6::Ineq_Table6(CVertex const & p1, CVertex const & p2)
129 {
130  float d;
131 
132  tab[1].SetC(0);
133  tab[0].SetC(0);
134 
135  tab[0].SetA(p1.getY()-p2.getY());
136  tab[0].SetB(p2.getX()-p1.getX());
137  tab[1].SetA(-tab[0].GetA());
138  tab[1].SetB(-tab[0].GetB());
139 
140  d = -(tab[0].GetA()*p1.getX() + tab[0].GetB()*p1.getY());
141 
142  tab[0].SetW((fabs(tab[0].GetA()) + fabs(tab[0].GetB()))/2.0);
143  tab[1].SetW(tab[0].GetW() + d);
144  tab[0].SetW(tab[0].GetW() - d);
145 
146  tab[3].SetA(0);
147  tab[2].SetA(0);
148 
149  tab[2].SetB(p1.getZ()-p2.getZ());
150  tab[2].SetC(p2.getY()-p1.getY());
151  tab[3].SetB(-tab[2].GetB());
152  tab[3].SetC(-tab[2].GetC());
153 
154  d = -(tab[2].GetB()*p1.getY() + tab[2].GetC()*p1.getZ());
155 
156  tab[2].SetW((fabs(tab[2].GetB()) + fabs(tab[2].GetC()))/2.0);
157  tab[3].SetW(tab[2].GetW() + d);
158  tab[2].SetW(tab[2].GetW() - d);
159 
160  tab[5].SetB(0);
161  tab[4].SetB(0);
162 
163  tab[4].SetC(p1.getX()-p2.getX());
164  tab[4].SetA(p2.getZ()-p1.getZ());
165  tab[5].SetC(-tab[4].GetC());
166  tab[5].SetA(-tab[4].GetA());
167 
168  d = -(tab[4].GetA()*p1.getX() + tab[4].GetC()*p1.getZ());
169 
170  tab[4].SetW((fabs(tab[4].GetA()) + fabs(tab[4].GetC()))/2.0);
171  tab[5].SetW(tab[4].GetW() + d);
172  tab[4].SetW(tab[4].GetW() - d);
173 
174  for (int i=0; i<6; i++)
175  {
176  if (tab[i].GetA() == 0 && tab[i].GetB() == 0 && tab[i].GetC() == 0)
177  tab[i].Set_Unused();
178  }
179 }
180 
181 
182 
183 // Méthode permettant la lecture d'une des équation du tableau.
184 inline
186 {
187  assert(num >= 0 && num <= 5);
188 
189  return &tab[num];
190 }
191 
192 
193 // Méthode permettant l'écriture d'une équation dans le tableau.
194 inline
195 void Ineq_Table6::Set_Ineq(int num, Inequation const & i)
196 {
197  assert(num >= 0 && num <= 5);
198 
199  tab[num] = i;
200 }
201 
202 #endif