12#ifndef ARCCORE_BASE_MATHREAL3X3_H
13#define ARCCORE_BASE_MATHREAL3X3_H
17#include "arccore/base/Real3x3.h"
18#include "arccore/base/MathReal3.h"
36inline constexpr ARCCORE_HOST_DEVICE
bool isNearlyZero(
const Real3x3& v)
38 return isNearlyZero(v.
x) && isNearlyZero(v.
y) && isNearlyZero(v.
z);
52inline constexpr ARCCORE_HOST_DEVICE
bool Real3x3::
55 return math::isNearlyZero(*
this);
Class managing a 3x3 real matrix.
Real3 z
first element of the triplet
Real3 y
first element of the triplet
Real3 x
first element of the triplet
Namespace for mathematical functions.
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --