Arcane  v3.15.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
Real2.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2024 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7/*---------------------------------------------------------------------------*/
8/* Real2.h (C) 2000-2024 */
9/* */
10/* Vecteur à 2 dimensions de 'Real'. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_DATATYPE_REAL2_H
13#define ARCANE_DATATYPE_REAL2_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/Numeric.h"
18
19#include <iosfwd>
20
21/*---------------------------------------------------------------------------*/
22/*---------------------------------------------------------------------------*/
23
24namespace Arcane
25{
26
27/*---------------------------------------------------------------------------*/
28/*---------------------------------------------------------------------------*/
29
31{
32 public:
33
34 Real x;
35 Real y;
36
46 ARCCORE_HOST_DEVICE Real operator[](Integer i) const
47 {
48 ARCCORE_CHECK_AT(i, 2);
49 return (&x)[i];
50 }
51
61 ARCCORE_HOST_DEVICE Real operator()(Integer i) const
62 {
63 ARCCORE_CHECK_AT(i, 2);
64 return (&x)[i];
65 }
66
76 ARCCORE_HOST_DEVICE Real& operator[](Integer i)
77 {
78 ARCCORE_CHECK_AT(i, 2);
79 return (&x)[i];
80 }
81
91 ARCCORE_HOST_DEVICE Real& operator()(Integer i)
92 {
93 ARCCORE_CHECK_AT(i, 2);
94 return (&x)[i];
95 }
96
98 ARCCORE_HOST_DEVICE void setComponent(Integer i, Real value)
99 {
100 ARCCORE_CHECK_AT(i, 2);
101 (&x)[i] = value;
102 }
103};
104
105/*---------------------------------------------------------------------------*/
106/*---------------------------------------------------------------------------*/
119class ARCANE_UTILS_EXPORT Real2
120: public Real2POD
121{
122 public:
123
125 constexpr ARCCORE_HOST_DEVICE Real2()
126 : Real2POD()
127 {
128 x = 0.;
129 y = 0.;
130 }
132 constexpr ARCCORE_HOST_DEVICE Real2(Real ax, Real ay)
133 : Real2POD()
134 {
135 x = ax;
136 y = ay;
137 }
139 Real2(const Real2& f) = default;
141 constexpr ARCCORE_HOST_DEVICE explicit Real2(const Real2POD& f)
142 : Real2POD()
143 {
144 x = f.x;
145 y = f.y;
146 }
147
149 constexpr ARCCORE_HOST_DEVICE explicit Real2(Real v)
150 : Real2POD()
151 {
152 x = y = v;
153 }
154
156 inline constexpr ARCCORE_HOST_DEVICE explicit Real2(const Real3& v);
157
158 Real2& operator=(const Real2& f) = default;
159
161 constexpr ARCCORE_HOST_DEVICE Real2& operator=(Real v)
162 {
163 x = y = v;
164 return (*this);
165 }
166
167 public:
168
169 constexpr ARCCORE_HOST_DEVICE static Real2 null() { return Real2(0., 0.); }
170
171 public:
172
174 constexpr ARCCORE_HOST_DEVICE Real2 copy() const { return (*this); }
176 constexpr ARCCORE_HOST_DEVICE Real2& reset()
177 {
178 x = y = 0.0;
179 return (*this);
180 }
182 constexpr ARCCORE_HOST_DEVICE Real2& assign(Real ax, Real ay)
183 {
184 x = ax;
185 y = ay;
186 return (*this);
187 }
189 constexpr ARCCORE_HOST_DEVICE Real2& assign(Real2 f)
190 {
191 x = f.x;
192 y = f.y;
193 return (*this);
194 }
195
197 ARCCORE_HOST_DEVICE Real2 absolute() const { return Real2(math::abs(x), math::abs(y)); }
198
203 std::istream& assign(std::istream& i);
205 std::ostream& print(std::ostream& o) const;
207 std::ostream& printXy(std::ostream& o) const;
208
210 constexpr ARCCORE_HOST_DEVICE Real2& add(Real2 b)
211 {
212 x += b.x;
213 y += b.y;
214 return (*this);
215 }
217 constexpr ARCCORE_HOST_DEVICE Real2& sub(Real2 b)
218 {
219 x -= b.x;
220 y -= b.y;
221 return (*this);
222 }
224 constexpr ARCCORE_HOST_DEVICE Real2& mul(Real2 b)
225 {
226 x *= b.x;
227 y *= b.y;
228 return (*this);
229 }
231 constexpr ARCCORE_HOST_DEVICE Real2& div(Real2 b)
232 {
233 x /= b.x;
234 y /= b.y;
235 return (*this);
236 }
238 constexpr ARCCORE_HOST_DEVICE Real2& addSame(Real b)
239 {
240 x += b;
241 y += b;
242 return (*this);
243 }
245 constexpr ARCCORE_HOST_DEVICE Real2& subSame(Real b)
246 {
247 x -= b;
248 y -= b;
249 return (*this);
250 }
252 constexpr ARCCORE_HOST_DEVICE Real2& mulSame(Real b)
253 {
254 x *= b;
255 y *= b;
256 return (*this);
257 }
259 constexpr ARCCORE_HOST_DEVICE Real2& divSame(Real b)
260 {
261 x /= b;
262 y /= b;
263 return (*this);
264 }
266 constexpr ARCCORE_HOST_DEVICE Real2& operator+=(Real2 b) { return add(b); }
268 constexpr ARCCORE_HOST_DEVICE Real2& operator-=(Real2 b) { return sub(b); }
270 constexpr ARCCORE_HOST_DEVICE Real2& operator*=(Real2 b) { return mul(b); }
272 constexpr ARCCORE_HOST_DEVICE void operator*=(Real b)
273 {
274 x *= b;
275 y *= b;
276 }
278 constexpr ARCCORE_HOST_DEVICE Real2& operator/=(Real2 b) { return div(b); }
280 constexpr ARCCORE_HOST_DEVICE void operator/=(Real b)
281 {
282 x /= b;
283 y /= b;
284 }
286 constexpr ARCCORE_HOST_DEVICE Real2 operator+(Real2 b) const { return Real2(x + b.x, y + b.y); }
288 constexpr ARCCORE_HOST_DEVICE Real2 operator-(Real2 b) const { return Real2(x - b.x, y - b.y); }
290 constexpr ARCCORE_HOST_DEVICE Real2 operator-() const { return Real2(-x, -y); }
295 constexpr ARCCORE_HOST_DEVICE Real2 operator*(Real2 b) const { return Real2(x * b.x, y * b.y); }
300 constexpr ARCCORE_HOST_DEVICE Real2 operator/(Real2 b) const { return Real2(x / b.x, y / b.y); }
301
303 friend constexpr ARCCORE_HOST_DEVICE Real2 operator*(Real sca, Real2 vec)
304 {
305 return Real2(vec.x * sca, vec.y * sca);
306 }
307
309 friend constexpr ARCCORE_HOST_DEVICE Real2 operator*(Real2 vec, Real sca)
310 {
311 return Real2(vec.x * sca, vec.y * sca);
312 }
313
315 friend constexpr ARCCORE_HOST_DEVICE Real2 operator/(Real2 vec, Real sca)
316 {
317 return Real2(vec.x / sca, vec.y / sca);
318 }
319
326 friend constexpr ARCCORE_HOST_DEVICE bool operator<(Real2 v1, Real2 v2)
327 {
328 if (v1.x == v2.x) {
329 return v1.y < v2.y;
330 }
331 return (v1.x < v2.x);
332 }
333
335 friend std::ostream& operator<<(std::ostream& o, Real2 t)
336 {
337 return t.printXy(o);
338 }
339
341 friend std::istream& operator>>(std::istream& i, Real2& t)
342 {
343 return t.assign(i);
344 }
345
352 constexpr ARCCORE_HOST_DEVICE bool operator==(Real2 b) const
353 {
354 return _eq(x, b.x) && _eq(y, b.y);
355 }
356
363 constexpr ARCCORE_HOST_DEVICE bool operator!=(Real2 b) const { return !operator==(b); }
364
365 public:
366
368 // TODO: rendre obsolète mi-2025: ARCANE_DEPRECATED_REASON("Y2024: Use math::squareNormL2(*this) instead")
369 constexpr ARCCORE_HOST_DEVICE Real squareNormL2() const { return x * x + y * y; }
370
372 ARCCORE_DEPRECATED_2021("Use math::squareNormL2(*this) instead")
373 ARCCORE_HOST_DEVICE Real abs2() const { return x * x + y * y; }
374
376 ARCCORE_DEPRECATED_2021("Use math::normL2(*this) instead")
377 inline ARCCORE_HOST_DEVICE Real abs() const;
378
385 // TODO: rendre obsolète mi-2025: ARCANE_DEPRECATED_REASON("Y2024: Use math::isNearlyZero(const Real2&) instead")
386 inline constexpr ARCCORE_HOST_DEVICE bool isNearlyZero() const;
387
389 // TODO: rendre obsolète mi-2025: ARCANE_DEPRECATED_REASON("Y2024: Use math::normL2(const Real2&) instead")
390 ARCCORE_HOST_DEVICE Real normL2() const;
391
399 ARCANE_DEPRECATED_REASON("Y2024: Use math::mutableNormalize(Real2&) instead")
400 inline Real2& normalize();
401
402 private:
403
409 constexpr ARCCORE_HOST_DEVICE static bool _eq(Real a, Real b);
411 ARCCORE_HOST_DEVICE static Real _sqrt(Real a);
412};
413
414/*---------------------------------------------------------------------------*/
415/*---------------------------------------------------------------------------*/
416
417namespace math
418{
425 inline constexpr ARCCORE_HOST_DEVICE bool isNearlyZero(const Real2& v)
426 {
427 return math::isNearlyZero(v.x) && math::isNearlyZero(v.y);
428 }
429
431 inline constexpr ARCCORE_HOST_DEVICE Real squareNormL2(const Real2& v)
432 {
433 return v.x * v.x + v.y * v.y;
434 }
435
437 inline ARCCORE_HOST_DEVICE Real normL2(const Real2& v)
438 {
439 return math::sqrt(math::squareNormL2(v));
440 }
441
450 {
451 Real d = math::normL2(v);
452 if (!math::isZero(d))
453 v.divSame(d);
454 return v;
455 }
456} // namespace math
457
458/*---------------------------------------------------------------------------*/
459/*---------------------------------------------------------------------------*/
460
461inline constexpr ARCCORE_HOST_DEVICE bool Real2::
462isNearlyZero() const
463{
464 return math::isNearlyZero(*this);
465}
466
467inline constexpr ARCCORE_HOST_DEVICE bool Real2::
468_eq(Real a, Real b)
469{
470 return math::isEqual(a, b);
471}
472
473inline ARCCORE_HOST_DEVICE Real Real2::
474_sqrt(Real a)
475{
476 return math::sqrt(a);
477}
478
479inline ARCCORE_HOST_DEVICE Real Real2::
480normL2() const
481{
482 return math::normL2(*this);
483}
484
485inline Real2& Real2::
486normalize()
487{
488 return math::mutableNormalize(*this);
489}
490
491inline ARCCORE_HOST_DEVICE Real Real2::
492abs() const
493{
494 return math::normL2(*this);
495}
496
497/*---------------------------------------------------------------------------*/
498/*---------------------------------------------------------------------------*/
499
500} // End namespace Arcane
501
502/*---------------------------------------------------------------------------*/
503/*---------------------------------------------------------------------------*/
504
505#endif
Vue typée sur une liste d'entités d'une connectivité.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:149
Classe gérant un vecteur de réel de dimension 2.
Definition Real2.h:121
constexpr ARCCORE_HOST_DEVICE Real2 operator+(Real2 b) const
Créé un couple qui vaut ce couple ajouté à b.
Definition Real2.h:286
constexpr ARCCORE_HOST_DEVICE Real2 & div(Real2 b)
Divise chaque composante du couple par la composant correspondant de b.
Definition Real2.h:231
constexpr ARCCORE_HOST_DEVICE Real2 operator-(Real2 b) const
Créé un couple qui vaut b soustrait de ce couple.
Definition Real2.h:288
constexpr ARCCORE_HOST_DEVICE Real2 & divSame(Real b)
Divise chaque composante du couple par b.
Definition Real2.h:259
friend constexpr ARCCORE_HOST_DEVICE Real2 operator*(Real sca, Real2 vec)
Multiplication par un scalaire.
Definition Real2.h:303
ARCCORE_HOST_DEVICE Real2 absolute() const
Valeur absolue composante par composante.
Definition Real2.h:197
constexpr ARCCORE_HOST_DEVICE bool operator!=(Real2 b) const
Compare deux couples. Pour la notion d'égalité, voir operator==()
Definition Real2.h:363
constexpr ARCCORE_HOST_DEVICE Real2 & assign(Real ax, Real ay)
Affecte à l'instance le couple (ax,ay,az)
Definition Real2.h:182
constexpr ARCCORE_HOST_DEVICE Real2 & mulSame(Real b)
Multiplie chaque composante du couple par b.
Definition Real2.h:252
constexpr ARCCORE_HOST_DEVICE Real2 & operator*=(Real2 b)
Multiplie chaque composante du couple par la composant correspondant de b.
Definition Real2.h:270
constexpr ARCCORE_HOST_DEVICE Real2 & operator/=(Real2 b)
Divise chaque composante du couple par la composant correspondant de b.
Definition Real2.h:278
friend std::ostream & operator<<(std::ostream &o, Real2 t)
Ecrit le couple t sur le flot o.
Definition Real2.h:335
constexpr ARCCORE_HOST_DEVICE Real2 & reset()
Réinitialise le couple avec les constructeurs par défaut.
Definition Real2.h:176
constexpr ARCCORE_HOST_DEVICE void operator/=(Real b)
Divise chaque composante du couple par le réel b.
Definition Real2.h:280
friend constexpr ARCCORE_HOST_DEVICE bool operator<(Real2 v1, Real2 v2)
Opérateur de comparaison.
Definition Real2.h:326
constexpr ARCCORE_HOST_DEVICE Real2 & operator-=(Real2 b)
Soustrait b au couple.
Definition Real2.h:268
constexpr ARCCORE_HOST_DEVICE Real2 operator*(Real2 b) const
Créé un couple qui vaut ce couple dont chaque composant a été multipliée par la composante correspond...
Definition Real2.h:295
friend std::istream & operator>>(std::istream &i, Real2 &t)
Lit le couple t à partir du flot o.
Definition Real2.h:341
friend constexpr ARCCORE_HOST_DEVICE Real2 operator*(Real2 vec, Real sca)
Multiplication par un scalaire.
Definition Real2.h:309
constexpr ARCCORE_HOST_DEVICE Real2(const Real2POD &f)
Construit un coupe identique à f.
Definition Real2.h:141
constexpr ARCCORE_HOST_DEVICE Real2 & add(Real2 b)
Ajoute b au couple.
Definition Real2.h:210
constexpr ARCCORE_HOST_DEVICE Real2 & assign(Real2 f)
Copie le couple f.
Definition Real2.h:189
constexpr ARCCORE_HOST_DEVICE Real2 operator-() const
Créé un couple opposé au couple actuel.
Definition Real2.h:290
constexpr ARCCORE_HOST_DEVICE bool operator==(Real2 b) const
Compare composant pas composante l'instance courante à b.
Definition Real2.h:352
constexpr ARCCORE_HOST_DEVICE Real2(Real v)
Construit l'instance avec le triplet (v,v,v).
Definition Real2.h:149
constexpr ARCCORE_HOST_DEVICE Real2 operator/(Real2 b) const
Créé un couple qui vaut ce couple dont chaque composant a été divisée par la composante correspondant...
Definition Real2.h:300
constexpr ARCCORE_HOST_DEVICE Real2 copy() const
Retourne une copie du couple.
Definition Real2.h:174
constexpr ARCCORE_HOST_DEVICE Real2 & mul(Real2 b)
Multiple chaque composante du couple par la composant correspondant de b.
Definition Real2.h:224
constexpr ARCCORE_HOST_DEVICE Real2 & addSame(Real b)
Ajoute b à chaque composante du couple.
Definition Real2.h:238
constexpr ARCCORE_HOST_DEVICE Real2(Real ax, Real ay)
Construit le couplet (ax,ay)
Definition Real2.h:132
constexpr ARCCORE_HOST_DEVICE void operator*=(Real b)
Multiplie chaque composante du couple par le réel b.
Definition Real2.h:272
constexpr ARCCORE_HOST_DEVICE Real2 & subSame(Real b)
Soustrait b à chaque composante du couple.
Definition Real2.h:245
constexpr ARCCORE_HOST_DEVICE Real2()
Construit le vecteur nul.
Definition Real2.h:125
constexpr ARCCORE_HOST_DEVICE Real2 & operator=(Real v)
Affecte à l'instance le couple (v,v).
Definition Real2.h:161
constexpr ARCCORE_HOST_DEVICE Real2 & sub(Real2 b)
Soustrait b au couple.
Definition Real2.h:217
constexpr ARCCORE_HOST_DEVICE Real squareNormL2() const
Retourne la norme au carré du couple .
Definition Real2.h:369
constexpr ARCCORE_HOST_DEVICE Real2 & operator+=(Real2 b)
Ajoute b au couple.
Definition Real2.h:266
Real2(const Real2 &f)=default
Construit un couple identique à f.
friend constexpr ARCCORE_HOST_DEVICE Real2 operator/(Real2 vec, Real sca)
Division par un scalaire.
Definition Real2.h:315
Classe gérant un vecteur de réel de dimension 3.
Definition Real3.h:132
Espace de nom pour l'utilisation des accélérateurs.
constexpr ARCCORE_HOST_DEVICE Real squareNormL2(const Real2 &v)
Retourne la norme au carré du couple .
Definition Real2.h:431
Real2 & mutableNormalize(Real2 &v)
Normalise le couple.
Definition Real2.h:449
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
Real y
deuxième composante du couple
Definition Real2.h:35
ARCCORE_HOST_DEVICE void setComponent(Integer i, Real value)
Positionne la i-ème composante à value.
Definition Real2.h:98
Real x
première composante du couple
Definition Real2.h:34
ARCCORE_HOST_DEVICE Real operator[](Integer i) const
Definition Real2.h:46
ARCCORE_HOST_DEVICE Real & operator()(Integer i)
Definition Real2.h:91
ARCCORE_HOST_DEVICE Real & operator[](Integer i)
Definition Real2.h:76
ARCCORE_HOST_DEVICE Real operator()(Integer i) const
Definition Real2.h:61