/* * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Release date: 01/09/2015 * Authors: Norbert Bus, Nabil H. Mustafa * * If you find this code useful, please cite it by referencing the following paper: * @article{BGMR15, title={Tighter Estimates for epsilon-nets for Disks}, author={N. Bus and S. Garg and N. H. Mustafa and S. Ray}, journal={Computational Geometry: Theory and Applications},year={2015 to appear}} */ ********************************************* README ********************************************* This library provides a function to compute epsilon-nets of small size for disks in the plane. The documentation in the header files provides the detailed description of the function parameters. Instructions to add it to your project: 1. Setup CGAL according to your os 3. Copy the enet directory including the header and the cpp file into your project's root folder 2. Link to the library and CGAL in your project (provided that you have your main.cpp): On linux modify the following according to your setup: g++ -lCGAL -I/usr/local/include/CGAL -I./enet ./enet/enet.cpp main.cpp -o app On windows adjust the include paths and libs for CGAL and the enet files.