From ad30c193dfe82e17cb04f9de6010ec524e04c22f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Mon, 22 Dec 2014 14:34:29 +0100 Subject: [PATCH] fix path to data --- .../examples/Scale_space_reconstruction_3/scale_space.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scale_space_reconstruction_3/examples/Scale_space_reconstruction_3/scale_space.cpp b/Scale_space_reconstruction_3/examples/Scale_space_reconstruction_3/scale_space.cpp index 7ee877203be..b43a384f286 100644 --- a/Scale_space_reconstruction_3/examples/Scale_space_reconstruction_3/scale_space.cpp +++ b/Scale_space_reconstruction_3/examples/Scale_space_reconstruction_3/scale_space.cpp @@ -19,7 +19,7 @@ typedef Reconstruction::Triple_const_iterator Triple_iterator; int main(void) { // Read the data. Point_collection points; - std::ifstream in("kitten.off"); + std::ifstream in("data/kitten.off"); std::cout << "Reading " << std::flush; if( !in || !CGAL::read_off_points( in, std::back_inserter( points ) ) ) { std::cerr << "Error: cannot read file" << std::endl;