mirror of https://github.com/CGAL/cgal
fix path to data
This commit is contained in:
parent
d1c65b4986
commit
ad30c193df
|
|
@ -19,7 +19,7 @@ typedef Reconstruction::Triple_const_iterator Triple_iterator;
|
||||||
int main(void) {
|
int main(void) {
|
||||||
// Read the data.
|
// Read the data.
|
||||||
Point_collection points;
|
Point_collection points;
|
||||||
std::ifstream in("kitten.off");
|
std::ifstream in("data/kitten.off");
|
||||||
std::cout << "Reading " << std::flush;
|
std::cout << "Reading " << std::flush;
|
||||||
if( !in || !CGAL::read_off_points( in, std::back_inserter( points ) ) ) {
|
if( !in || !CGAL::read_off_points( in, std::back_inserter( points ) ) ) {
|
||||||
std::cerr << "Error: cannot read file" << std::endl;
|
std::cerr << "Error: cannot read file" << std::endl;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue