12#ifndef ARCANE_DATATYPE_REAL2_H
13#define ARCANE_DATATYPE_REAL2_H
17#include "arcane/utils/Numeric.h"
48 ARCCORE_CHECK_AT(i, 2);
63 ARCCORE_CHECK_AT(i, 2);
78 ARCCORE_CHECK_AT(i, 2);
93 ARCCORE_CHECK_AT(i, 2);
100 ARCCORE_CHECK_AT(i, 2);
125 constexpr ARCCORE_HOST_DEVICE
Real2()
149 constexpr ARCCORE_HOST_DEVICE
explicit Real2(Real v)
156 inline constexpr ARCCORE_HOST_DEVICE
explicit Real2(
const Real3& v);
169 constexpr ARCCORE_HOST_DEVICE
static Real2 null() {
return Real2(0., 0.); }
174 constexpr ARCCORE_HOST_DEVICE
Real2 copy()
const {
return (*
this); }
203 return math::isNearlyZero(x) && math::isNearlyZero(y);
207 constexpr ARCCORE_HOST_DEVICE Real
squareNormL2()
const {
return x * x + y * y; }
209 ARCCORE_HOST_DEVICE Real
normL2()
const {
return _sqrt(squareNormL2()); }
212 ARCCORE_DEPRECATED_2021(
"Use squareNormL2() instead")
213 ARCCORE_HOST_DEVICE Real abs2()
const {
return x * x + y * y; }
215 ARCCORE_DEPRECATED_2021(
"Use normL2() instead")
216 ARCCORE_HOST_DEVICE Real abs()
const {
return _sqrt(squareNormL2()); }
224 std::istream& assign(std::istream& i);
226 std::ostream& print(std::ostream& o)
const;
228 std::ostream& printXy(std::ostream& o)
const;
333 if (!math::isZero(d))
367 return (v1.
x < v2.
x);
390 return _eq(x,
b.x) && _eq(y,
b.y);
408 constexpr ARCCORE_HOST_DEVICE
static bool _eq(Real a, Real
b) {
return math::isEqual(a,
b); }
410 ARCCORE_HOST_DEVICE
static Real
_sqrt(Real a) {
return math::sqrt(a); }
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Classe gérant un vecteur de réel de dimension 2.
constexpr ARCCORE_HOST_DEVICE Real2 operator+(Real2 b) const
Créé un couple qui vaut ce couple ajouté à b.
constexpr ARCCORE_HOST_DEVICE Real2 & div(Real2 b)
Divise chaque composante du couple par la composant correspondant de b.
constexpr ARCCORE_HOST_DEVICE Real2 operator-(Real2 b) const
Créé un couple qui vaut b soustrait de ce couple.
constexpr ARCCORE_HOST_DEVICE Real2 & divSame(Real b)
Divise chaque composante du couple par b.
constexpr static ARCCORE_HOST_DEVICE bool _eq(Real a, Real b)
Compare les valeurs de a et b avec le comparateur TypeEqualT.
friend constexpr ARCCORE_HOST_DEVICE Real2 operator*(Real sca, Real2 vec)
Multiplication par un scalaire.
ARCCORE_HOST_DEVICE Real2 absolute() const
Valeur absolue composante par composante.
constexpr ARCCORE_HOST_DEVICE bool operator!=(Real2 b) const
Compare deux couples. Pour la notion d'égalité, voir operator==()
constexpr ARCCORE_HOST_DEVICE Real2 & assign(Real ax, Real ay)
Affecte à l'instance le couple (ax,ay,az)
constexpr ARCCORE_HOST_DEVICE Real2 & mulSame(Real b)
Multiplie chaque composante du couple par b.
constexpr ARCCORE_HOST_DEVICE Real2 & operator*=(Real2 b)
Multiplie chaque composante du couple par la composant correspondant de b.
constexpr ARCCORE_HOST_DEVICE Real2 & operator/=(Real2 b)
Divise chaque composante du couple par la composant correspondant de b.
friend std::ostream & operator<<(std::ostream &o, Real2 t)
Ecrit le couple t sur le flot o.
constexpr ARCCORE_HOST_DEVICE Real2 & reset()
Réinitialise le couple avec les constructeurs par défaut.
constexpr ARCCORE_HOST_DEVICE void operator/=(Real b)
Divise chaque composante du couple par le réel b.
friend constexpr ARCCORE_HOST_DEVICE bool operator<(Real2 v1, Real2 v2)
Opérateur de comparaison.
constexpr ARCCORE_HOST_DEVICE Real2 & operator-=(Real2 b)
Soustrait b au couple.
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...
friend std::istream & operator>>(std::istream &i, Real2 &t)
Lit le couple t à partir du flot o.
friend constexpr ARCCORE_HOST_DEVICE Real2 operator*(Real2 vec, Real sca)
Multiplication par un scalaire.
constexpr ARCCORE_HOST_DEVICE Real2(const Real2POD &f)
Construit un coupe identique à f.
constexpr ARCCORE_HOST_DEVICE Real2 & add(Real2 b)
Ajoute b au couple.
constexpr ARCCORE_HOST_DEVICE Real2 & assign(Real2 f)
Copie le couple f.
constexpr ARCCORE_HOST_DEVICE Real2 operator-() const
Créé un couple opposé au couple actuel.
constexpr ARCCORE_HOST_DEVICE bool operator==(Real2 b) const
Compare composant pas composante l'instance courante à b.
constexpr ARCCORE_HOST_DEVICE Real2(Real v)
Construit l'instance avec le triplet (v,v,v).
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...
constexpr ARCCORE_HOST_DEVICE Real2 copy() const
Retourne une copie du couple.
constexpr ARCCORE_HOST_DEVICE Real2 & mul(Real2 b)
Multiple chaque composante du couple par la composant correspondant de b.
constexpr ARCCORE_HOST_DEVICE Real2 & addSame(Real b)
Ajoute b à chaque composante du couple.
constexpr ARCCORE_HOST_DEVICE Real2(Real ax, Real ay)
Construit le couplet (ax,ay)
constexpr ARCCORE_HOST_DEVICE void operator*=(Real b)
Multiplie chaque composante du couple par le réel b.
static ARCCORE_HOST_DEVICE Real _sqrt(Real a)
Retourne la racine carrée de a.
Real2 & normalize()
Normalise le couple.
constexpr ARCCORE_HOST_DEVICE bool isNearlyZero() const
Indique si l'instance est proche de l'instance nulle.
constexpr ARCCORE_HOST_DEVICE Real2 & subSame(Real b)
Soustrait b à chaque composante du couple.
ARCCORE_HOST_DEVICE Real normL2() const
Retourne la norme du couple .
constexpr ARCCORE_HOST_DEVICE Real2()
Construit le vecteur nul.
constexpr ARCCORE_HOST_DEVICE Real2 & operator=(Real v)
Affecte à l'instance le couple (v,v).
constexpr ARCCORE_HOST_DEVICE Real2 & sub(Real2 b)
Soustrait b au couple.
constexpr ARCCORE_HOST_DEVICE Real squareNormL2() const
Retourne la norme au carré du couple .
constexpr ARCCORE_HOST_DEVICE Real2 & operator+=(Real2 b)
Ajoute b au couple.
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.
Classe gérant un vecteur de réel de dimension 3.
Espace de nom pour l'utilisation des accélérateurs.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
Real y
deuxième composante du couple
ARCCORE_HOST_DEVICE void setComponent(Integer i, Real value)
Positionne la i-ème composante à value.
Real x
première composante du couple
ARCCORE_HOST_DEVICE Real operator[](Integer i) const
ARCCORE_HOST_DEVICE Real & operator()(Integer i)
ARCCORE_HOST_DEVICE Real & operator[](Integer i)
ARCCORE_HOST_DEVICE Real operator()(Integer i) const