/usr/include/gmsh/Voronoi3D.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 | // 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>.
//
// Contributor(s):
// Tristan Carrier
#include "GRegion.h"
class VoronoiElement;
class clip{
public:
clip();
~clip();
void execute();
void execute(GRegion*);
void execute(std::vector<SPoint3>&,std::vector<VoronoiElement>&);
double min(double,double);
double max(double,double);
int category(int,int,int,int);
void print_segment(SPoint3,SPoint3,std::ofstream&);
};
|