Select Git revision
meshGEdge.h
meshGEdge.h 648 B
// Gmsh - Copyright (C) 1997-2019 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
#ifndef MESH_GEDGE_H
#define MESH_GEDGE_H
class GEdge;
// Create the mesh of the edge
struct meshGEdge {
meshGEdge() {}
void operator()(GEdge *);
};
// destroy the mesh of the edge
struct deMeshGEdge {
deMeshGEdge() {}
void operator()(GEdge *);
};
// Orient the mesh of an edge. This is necessary to comply with the orientation
// constraints
struct orientMeshGEdge {
void operator()(GEdge *);
};
int MeshExtrudedCurve(GEdge *ge);
#endif