postgis/liblwgeom/box2d.c
Sandro Santilli 4e5c99a414 Update my email address
git-svn-id: http://svn.osgeo.org/postgis/trunk@14985 b70326c6-7e19-0410-871a-916f4a2858ee
2016-07-04 12:57:49 +00:00

49 lines
1.4 KiB
C

/**********************************************************************
*
* PostGIS - Spatial Types for PostgreSQL
* http://postgis.net
*
* PostGIS 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 2 of the License, or
* (at your option) any later version.
*
* PostGIS 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 PostGIS. If not, see <http://www.gnu.org/licenses/>.
*
**********************************************************************
*
* Copyright (C) 2004-2015 Sandro Santilli <strk.io>
* Copyright (C) 2008-2011 Paul Ramsey <pramsey@cleverelephant.ca>
* Copyright (C) 2008 Mark Cave-Ayland <mark.cave-ayland@siriusit.co.uk>
*
**********************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "liblwgeom_internal.h"
#ifndef EPSILON
#define EPSILON 1.0E-06
#endif
#ifndef FPeq
#define FPeq(A,B) (fabs((A) - (B)) <= EPSILON)
#endif
GBOX *
box2d_clone(const GBOX *in)
{
GBOX *ret = lwalloc(sizeof(GBOX));
memcpy(ret, in, sizeof(GBOX));
return ret;
}