LineSegment.cc | LineSegment.cc | |||
---|---|---|---|---|
skipping to change at line 26 | skipping to change at line 26 | |||
// License along with this library; if not, write to the Free Software | // License along with this library; if not, write to the Free Software | |||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | |||
// | // | |||
// Email: | // Email: | |||
// mhadji@gmail.com | // mhadji@gmail.com | |||
#include <cstring> | #include <cstring> | |||
#include <cmath> | #include <cmath> | |||
#include <limits> | #include <limits> | |||
#include "../../include/SpatialIndex.h" | #include <spatialindex/SpatialIndex.h> | |||
using namespace SpatialIndex; | using namespace SpatialIndex; | |||
LineSegment::LineSegment() | LineSegment::LineSegment() | |||
: m_dimension(0), m_pStartPoint(0), m_pEndPoint(0) | : m_dimension(0), m_pStartPoint(0), m_pEndPoint(0) | |||
{ | { | |||
} | } | |||
LineSegment::LineSegment(const double* pStartPoint, const double* pEndPoint , uint32_t dimension) | LineSegment::LineSegment(const double* pStartPoint, const double* pEndPoint , uint32_t dimension) | |||
: m_dimension(dimension) | : m_dimension(dimension) | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |