fixed includes to new files position (also in app2/sample/hashing_2D)

This commit is contained in:
ganovelli 2014-10-09 14:10:27 +00:00
parent 578f4ae72e
commit 918cec664a
9 changed files with 10 additions and 10 deletions

View File

@ -24,8 +24,8 @@
#include <time.h> #include <time.h>
#include <vcg/space/distance2.h> #include <vcg/space/distance2.h>
#include<vcg/space/segment2.h> #include<vcg/space/segment2.h>
#include<vcg/space/index/index2d/grid_static_ptr_2d.h> #include<vcg/space/index/grid_static_ptr2d.h>
#include<vcg/space/index/index2d/grid_closest_2d.h> #include<vcg/space/index/grid_closest2d.h>
#include<vcg/space/intersection2.h> #include<vcg/space/intersection2.h>
typedef double MyScalarType; typedef double MyScalarType;

View File

@ -7,9 +7,9 @@ DEPENDPATH += .
INCLUDEPATH += . ../../.. INCLUDEPATH += . ../../..
CONFIG += console stl CONFIG += console stl
TEMPLATE = app TEMPLATE = app
HEADERS += ../../../vcg/space/index/index2d/grid_static_ptr_2d.h\ HEADERS += ../../../vcg/space/index/grid_static_ptr2d.h\
../../../vcg/space/index/index2d/closest_2d.h\ ../../../vcg/space/index/closest2d.h\
../../../vcg/space/index/index2d/space_iterators_2d.h\ ../../../vcg/space/index/space_iterators2d.h\
../../../vcg/space/index/index2d/grid_closest_2d.h ../../../vcg/space/index/grid_closest2d.h
SOURCES += test_hash2d.cpp SOURCES += test_hash2d.cpp

View File

@ -24,7 +24,7 @@
#ifndef __VCGLIB_GRID_CLOSEST_2D #ifndef __VCGLIB_GRID_CLOSEST_2D
#define __VCGLIB_GRID_CLOSEST_2D #define __VCGLIB_GRID_CLOSEST_2D
#include <vcg/space/index/index2d/space_iterators_2d.h> #include <vcg/space/index/space_iterators2d.h>
#include <vcg/space/intersection2.h> #include <vcg/space/intersection2.h>
namespace vcg{ namespace vcg{

View File

@ -30,8 +30,8 @@
#include <vcg/space/box2.h> #include <vcg/space/box2.h>
#include <vcg/space/line2.h> #include <vcg/space/line2.h>
#include <vcg/space/index/index2d/grid_util_2d.h> #include <vcg/space/index/grid_util2d.h>
#include <vcg/space/index/index2d/grid_closest_2d.h> #include <vcg/space/index/grid_closest2d.h>
namespace vcg { namespace vcg {

View File

@ -26,7 +26,7 @@
#ifndef __VCGLIB_GRID_UTIL_2D #ifndef __VCGLIB_GRID_UTIL_2D
#define __VCGLIB_GRID_UTIL_2D #define __VCGLIB_GRID_UTIL_2D
#include<vcg/space/index/index2d/base_2d.h> #include<vcg/space/index/base2d.h>
#include<vcg/space/box2.h> #include<vcg/space/box2.h>