7#include "GeometryKernelSurfaceInternalUtils.h"
12#include <arcane/utils/NotImplementedException.h>
13#include <GeometryKernel/tools/surface/triangulation-topo-tools.h>
16NUMERICS_BEGIN_NAMESPACE
23 GeometryKernel::TriangulationDataStructurePtr surface,
33 normal =
Real3(0.,0.,0.);
38 const Face & face = *iface;
40 switch (face.
type()) {
42 surface->newFace(nodeMapping.getNodeId(face.
node(0)),
43 nodeMapping.getNodeId(face.
node(1)),
44 nodeMapping.getNodeId(face.
node(2)));
47 normal += face_factor*nodeMapping.computeNormal(face.
node(0), face.
node(1), face.
node(2));
50 surface->newFace(nodeMapping.getNodeId(face.
node(0)),
51 nodeMapping.getNodeId(face.
node(1)),
52 nodeMapping.getNodeId(face.
node(2)));
55 normal += face_factor*nodeMapping.computeNormal(face.
node(0), face.
node(1), face.
node(2));
56 surface->newFace(nodeMapping.getNodeId(face.
node(2)),
57 nodeMapping.getNodeId(face.
node(3)),
58 nodeMapping.getNodeId(face.
node(0)));
61 normal += face_factor*nodeMapping.computeNormal(face.
node(2), face.
node(3), face.
node(0));
69 GeometryKernel::TriangulationTopoTools topology(*surface);
71 topology.computeMicroTopology(face_reorient.
begin(),face_reorient.
end());
77void saveSurface(
const char * filename, GeometryKernel::TriangulationDataStructure & tr)
79 typedef GeometryKernel::Vector
Vector;
80 typedef GeometryKernel::TriangulationFace
Face;
81 typedef GeometryKernel::TObjectId TObjectId;
84 file.open(filename,std::ios::out | std::ios::binary);
85 const int nVertices = tr.numberOfVertices();
86 file.write((
const char*)&nVertices,
sizeof(
int));
87 for(
Integer i=0;i<nVertices;++i)
89 const Vector & point = tr.vertex(i).point();
90 file.write((
const char*)&point,
sizeof(
Vector));
92 const int nFaces = tr.numberOfFaces();
93 file.write((
const char*)&nFaces,
sizeof(
int));
96 const Face & face = tr.face(i);
97 for(
int j=0;j<3;++j) {
98 const TObjectId k = face.vertex(j);
99 file.write((
const char*)&k,
sizeof(TObjectId));
107void loadSurface(
const char * filename, GeometryKernel::TriangulationDataStructure & tr)
109 typedef GeometryKernel::Vector
Vector;
110 typedef GeometryKernel::TriangulationFace
Face;
111 typedef GeometryKernel::TObjectId TObjectId;
116 file.open(filename,std::ios::in | std::ios::binary);
118 file.read((
char*)&nVertices,
sizeof(
int));
119 for(
Integer i=0;i<nVertices;++i)
122 file.read((
char*)&point,
sizeof(
Vector));
126 file.read((
char*)&nFaces,
sizeof(
int));
130 for(
int j=0;j<3;++j) {
131 file.read((
char*)&k[j],
sizeof(TObjectId));
133 tr.newFace(k[0],k[1],k[2]);
141NUMERICS_END_NAMESPACE
Integer size() const
Nombre d'éléments du vecteur.
Tableau d'items de types quelconques.
void clear()
Supprime les éléments du tableau.
iterator end()
Itérateur sur le premier élément après la fin du tableau.
void resize(Int64 s)
Change le nombre d'éléments du tableau à s.
void reserve(Int64 new_capacity)
Réserve le mémoire pour new_capacity éléments.
iterator begin()
Itérateur sur le premier élément du tableau.
void add(ConstReferenceType val)
Ajoute l'élément val à la fin du tableau.
ARCANE_DEPRECATED_118 bool isBoundaryOutside() const
Indique si la face est au bord t orientée vers l'extérieur.
Integer size() const
Nombre d'éléments du groupe.
IMesh * mesh() const
Maillage auquel appartient ce groupe (0 pour le group nul)
Node node(Int32 i) const
i-ème noeud de l'entité
bool isOwn() const
true si l'entité est appartient au sous-domaine
Int16 type() const
Type de l'entité
Exception lorsqu'une fonction n'est pas implémentée.
Classe gérant un vecteur de réel de dimension 3.
Vector class, to be used by user.
ItemGroupT< Face > FaceGroup
Groupe de faces.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
Int32 Integer
Type représentant un entier.
void loadSurface(const char *filename, GeometryKernel::TriangulationDataStructure &tr)
Load surface utility for debugging purpose (binary format)
double Real
Type représentant un réel.
void saveSurface(const char *filename, GeometryKernel::TriangulationDataStructure &tr)
Save surface utility for debugging purpose (binary format)
void buildFaceGroupSurface(FaceGroup group, GeometryKernel::TriangulationDataStructurePtr surface, Array< Node > &node_array, Array< Face > &face_array, Array< bool > &face_reorient, Real3 &normal)
Build GK triangulation and additional data from a face group.