/usr/include/gmsh/discreteVertex.h is in libgmsh-dev 3.0.6+dfsg1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | // Gmsh - Copyright (C) 1997-2017 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to the public mailing list <gmsh@onelab.info>.
#ifndef _DISCRETE_VERTEX_H_
#define _DISCRETE_VERTEX_H_
#include "GModel.h"
#include "GVertex.h"
#include "MVertex.h"
class discreteVertex : public GVertex {
public:
discreteVertex(GModel *m, int num) : GVertex(m, num){}
virtual ~discreteVertex(){}
virtual GPoint point() const { return GPoint(x(), y(), z(), this); }
virtual double x() const
{
return mesh_vertices.size() ? mesh_vertices[0]->x() : 0.;
}
virtual double y() const
{
return mesh_vertices.size() ? mesh_vertices[0]->y() : 0.;
}
virtual double z() const
{
return mesh_vertices.size() ? mesh_vertices[0]->z() : 0.;
}
};
#endif
|