Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
FaceReorienter.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2022 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/* FaceReorienter.h (C) 2000-2018 */
9/* */
10/* Vérifie la bonne orientation d'une face et la réoriente le cas échéant. */
11/*---------------------------------------------------------------------------*/
12#ifndef FACE_REORIENTER_H
13#define FACE_REORIENTER_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/mesh/MeshGlobal.h"
18
19#include "arcane/utils/TraceAccessor.h"
20
21/*---------------------------------------------------------------------------*/
22/*---------------------------------------------------------------------------*/
23
24ARCANE_BEGIN_NAMESPACE
25
26/*---------------------------------------------------------------------------*/
27/*---------------------------------------------------------------------------*/
28
29class ItemInternal;
30class IMesh;
31class Face;
32
33/*---------------------------------------------------------------------------*/
34/*---------------------------------------------------------------------------*/
35
36ARCANE_MESH_BEGIN_NAMESPACE
37
38class FaceFamily;
39
40/*---------------------------------------------------------------------------*/
41/*---------------------------------------------------------------------------*/
48class ARCANE_MESH_EXPORT FaceReorienter
49{
50 public:
54 ARCANE_DEPRECATED_260 FaceReorienter(ITraceMng* tm);
56 FaceReorienter(IMesh* mesh);
59
60 public:
61
65 ARCANE_DEPRECATED_260 void checkAndChangeOrientation(ItemInternal* face);
66
70 ARCANE_DEPRECATED_260 void checkAndChangeOrientationAMR(ItemInternal* face);
71
77 void checkAndChangeOrientation(Face face);
78
84 // AMR
85 void checkAndChangeOrientationAMR(Face face);
86
87 private:
88
89 ITraceMng* m_trace_mng;
90 FaceFamily* m_face_family;
91 Int64UniqueArray m_nodes_unique_id;
92 Int32UniqueArray m_nodes_local_id;
93 IntegerUniqueArray m_face_nodes_index;
94};
95
96/*---------------------------------------------------------------------------*/
97/*---------------------------------------------------------------------------*/
98
99ARCANE_MESH_END_NAMESPACE
100
101/*---------------------------------------------------------------------------*/
102/*---------------------------------------------------------------------------*/
103
104ARCANE_END_NAMESPACE
105
106/*---------------------------------------------------------------------------*/
107/*---------------------------------------------------------------------------*/
108
109#endif // FACE_REORIENTER_H
Cette fonction/classe réoriente les faces.
Face d'une maille.
Definition Item.h:932
Structure interne d'une entité de maillage.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Interface du gestionnaire de traces.
Vecteur 1D de données avec sémantique par valeur (style STL).