mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
27 lines
526 B
C++
27 lines
526 B
C++
#ifndef FILE_OCC_VERTEX_INCLUDED
|
|
#define FILE_OCC_VERTEX_INCLUDED
|
|
|
|
#include <TopoDS.hxx>
|
|
#include <BRep_TVertex.hxx>
|
|
|
|
#include "meshing.hpp"
|
|
#include "occ_utils.hpp"
|
|
|
|
namespace netgen
|
|
{
|
|
class OCCVertex : public GeometryVertex
|
|
{
|
|
TopoDS_Vertex vertex;
|
|
Point<3> p;
|
|
|
|
public:
|
|
OCCVertex( ) = default;
|
|
OCCVertex( TopoDS_Shape s );
|
|
~OCCVertex() {}
|
|
Point<3> GetPoint() const override;
|
|
size_t GetHash() const override;
|
|
};
|
|
}
|
|
|
|
#endif // FILE_OCC_VERTEX_INCLUDED
|