[GRASS-SVN] r40790 - grass/trunk/vector/v.delaunay
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Feb 3 05:25:00 EST 2010
Author: pkelly
Date: 2010-02-03 05:24:59 -0500 (Wed, 03 Feb 2010)
New Revision: 40790
Modified:
grass/trunk/vector/v.delaunay/data_types.h
grass/trunk/vector/v.delaunay/edge.c
grass/trunk/vector/v.delaunay/edge.h
grass/trunk/vector/v.delaunay/geom_primitives.h
grass/trunk/vector/v.delaunay/geometry.c
grass/trunk/vector/v.delaunay/in_out.c
grass/trunk/vector/v.delaunay/main.c
grass/trunk/vector/v.delaunay/memory.c
grass/trunk/vector/v.delaunay/v.delaunay.html
Log:
Acknowledge original source of the code (Geoff Leach, RMIT) and add
appropriate copyright notices.
Modified: grass/trunk/vector/v.delaunay/data_types.h
===================================================================
--- grass/trunk/vector/v.delaunay/data_types.h 2010-02-03 08:12:55 UTC (rev 40789)
+++ grass/trunk/vector/v.delaunay/data_types.h 2010-02-03 10:24:59 UTC (rev 40790)
@@ -1,3 +1,47 @@
+/***************************************************************
+ *
+ * MODULE: v.delaunay
+ *
+ * AUTHOR(S): Martin Pavlovsky (Google SoC 2008, Paul Kelly mentor)
+ * Based on "dct" by Geoff Leach, Department of Computer
+ * Science, RMIT.
+ *
+ * PURPOSE: Creates a Delaunay triangulation vector map
+ *
+ * COPYRIGHT: (C) RMIT 1993
+ * (C) 2008-2009 by the GRASS Development Team
+ *
+ * This program is free software under the GNU General
+ * Public License (>=v2). Read the file COPYING that
+ * comes with GRASS for details.
+ *
+ * The following notices apply to portions of the code originally
+ * derived from work by Geoff Leach of RMIT:
+ *
+ * Author: Geoff Leach, Department of Computer Science, RMIT.
+ * email: gl at cs.rmit.edu.au
+ *
+ * Date: 6/10/93
+ *
+ * Version 1.0
+ *
+ * Copyright (c) RMIT 1993. All rights reserved.
+ *
+ * License to copy and use this software purposes is granted provided
+ * that appropriate credit is given to both RMIT and the author.
+ *
+ * License is also granted to make and use derivative works provided
+ * that appropriate credit is given to both RMIT and the author.
+ *
+ * RMIT makes no representations concerning either the merchantability
+ * of this software or the suitability of this software for any particular
+ * purpose. It is provided "as is" without express or implied warranty
+ * of any kind.
+ *
+ * These notices must be retained in any copies of any part of this software.
+ *
+ **************************************************************/
+
#ifndef DATA_TYPES_H
#define DATA_TYPES_H
Modified: grass/trunk/vector/v.delaunay/edge.c
===================================================================
--- grass/trunk/vector/v.delaunay/edge.c 2010-02-03 08:12:55 UTC (rev 40789)
+++ grass/trunk/vector/v.delaunay/edge.c 2010-02-03 10:24:59 UTC (rev 40790)
@@ -1,3 +1,47 @@
+/***************************************************************
+ *
+ * MODULE: v.delaunay
+ *
+ * AUTHOR(S): Martin Pavlovsky (Google SoC 2008, Paul Kelly mentor)
+ * Based on "dct" by Geoff Leach, Department of Computer
+ * Science, RMIT.
+ *
+ * PURPOSE: Creates a Delaunay triangulation vector map
+ *
+ * COPYRIGHT: (C) RMIT 1993
+ * (C) 2008-2009 by the GRASS Development Team
+ *
+ * This program is free software under the GNU General
+ * Public License (>=v2). Read the file COPYING that
+ * comes with GRASS for details.
+ *
+ * The following notices apply to portions of the code originally
+ * derived from work by Geoff Leach of RMIT:
+ *
+ * Author: Geoff Leach, Department of Computer Science, RMIT.
+ * email: gl at cs.rmit.edu.au
+ *
+ * Date: 6/10/93
+ *
+ * Version 1.0
+ *
+ * Copyright (c) RMIT 1993. All rights reserved.
+ *
+ * License to copy and use this software purposes is granted provided
+ * that appropriate credit is given to both RMIT and the author.
+ *
+ * License is also granted to make and use derivative works provided
+ * that appropriate credit is given to both RMIT and the author.
+ *
+ * RMIT makes no representations concerning either the merchantability
+ * of this software or the suitability of this software for any particular
+ * purpose. It is provided "as is" without express or implied warranty
+ * of any kind.
+ *
+ * These notices must be retained in any copies of any part of this software.
+ *
+ **************************************************************/
+
#include <stdlib.h>
#include "data_types.h"
#include "memory.h"
Modified: grass/trunk/vector/v.delaunay/edge.h
===================================================================
--- grass/trunk/vector/v.delaunay/edge.h 2010-02-03 08:12:55 UTC (rev 40789)
+++ grass/trunk/vector/v.delaunay/edge.h 2010-02-03 10:24:59 UTC (rev 40790)
@@ -1,3 +1,47 @@
+/***************************************************************
+ *
+ * MODULE: v.delaunay
+ *
+ * AUTHOR(S): Martin Pavlovsky (Google SoC 2008, Paul Kelly mentor)
+ * Based on "dct" by Geoff Leach, Department of Computer
+ * Science, RMIT.
+ *
+ * PURPOSE: Creates a Delaunay triangulation vector map
+ *
+ * COPYRIGHT: (C) RMIT 1993
+ * (C) 2008-2009 by the GRASS Development Team
+ *
+ * This program is free software under the GNU General
+ * Public License (>=v2). Read the file COPYING that
+ * comes with GRASS for details.
+ *
+ * The following notices apply to portions of the code originally
+ * derived from work by Geoff Leach of RMIT:
+ *
+ * Author: Geoff Leach, Department of Computer Science, RMIT.
+ * email: gl at cs.rmit.edu.au
+ *
+ * Date: 6/10/93
+ *
+ * Version 1.0
+ *
+ * Copyright (c) RMIT 1993. All rights reserved.
+ *
+ * License to copy and use this software purposes is granted provided
+ * that appropriate credit is given to both RMIT and the author.
+ *
+ * License is also granted to make and use derivative works provided
+ * that appropriate credit is given to both RMIT and the author.
+ *
+ * RMIT makes no representations concerning either the merchantability
+ * of this software or the suitability of this software for any particular
+ * purpose. It is provided "as is" without express or implied warranty
+ * of any kind.
+ *
+ * These notices must be retained in any copies of any part of this software.
+ *
+ **************************************************************/
+
#ifndef EDGE_H
#define EDGE_H
Modified: grass/trunk/vector/v.delaunay/geom_primitives.h
===================================================================
--- grass/trunk/vector/v.delaunay/geom_primitives.h 2010-02-03 08:12:55 UTC (rev 40789)
+++ grass/trunk/vector/v.delaunay/geom_primitives.h 2010-02-03 10:24:59 UTC (rev 40790)
@@ -1,3 +1,47 @@
+/***************************************************************
+ *
+ * MODULE: v.delaunay
+ *
+ * AUTHOR(S): Martin Pavlovsky (Google SoC 2008, Paul Kelly mentor)
+ * Based on "dct" by Geoff Leach, Department of Computer
+ * Science, RMIT.
+ *
+ * PURPOSE: Creates a Delaunay triangulation vector map
+ *
+ * COPYRIGHT: (C) RMIT 1993
+ * (C) 2008-2009 by the GRASS Development Team
+ *
+ * This program is free software under the GNU General
+ * Public License (>=v2). Read the file COPYING that
+ * comes with GRASS for details.
+ *
+ * The following notices apply to portions of the code originally
+ * derived from work by Geoff Leach of RMIT:
+ *
+ * Author: Geoff Leach, Department of Computer Science, RMIT.
+ * email: gl at cs.rmit.edu.au
+ *
+ * Date: 6/10/93
+ *
+ * Version 1.0
+ *
+ * Copyright (c) RMIT 1993. All rights reserved.
+ *
+ * License to copy and use this software purposes is granted provided
+ * that appropriate credit is given to both RMIT and the author.
+ *
+ * License is also granted to make and use derivative works provided
+ * that appropriate credit is given to both RMIT and the author.
+ *
+ * RMIT makes no representations concerning either the merchantability
+ * of this software or the suitability of this software for any particular
+ * purpose. It is provided "as is" without express or implied warranty
+ * of any kind.
+ *
+ * These notices must be retained in any copies of any part of this software.
+ *
+ **************************************************************/
+
#ifndef GEOM_PRIMITIVES_H
#define GEOM_PRIMITIVES_H
Modified: grass/trunk/vector/v.delaunay/geometry.c
===================================================================
--- grass/trunk/vector/v.delaunay/geometry.c 2010-02-03 08:12:55 UTC (rev 40789)
+++ grass/trunk/vector/v.delaunay/geometry.c 2010-02-03 10:24:59 UTC (rev 40790)
@@ -1,3 +1,47 @@
+/***************************************************************
+ *
+ * MODULE: v.delaunay
+ *
+ * AUTHOR(S): Martin Pavlovsky (Google SoC 2008, Paul Kelly mentor)
+ * Based on "dct" by Geoff Leach, Department of Computer
+ * Science, RMIT.
+ *
+ * PURPOSE: Creates a Delaunay triangulation vector map
+ *
+ * COPYRIGHT: (C) RMIT 1993
+ * (C) 2008-2009 by the GRASS Development Team
+ *
+ * This program is free software under the GNU General
+ * Public License (>=v2). Read the file COPYING that
+ * comes with GRASS for details.
+ *
+ * The following notices apply to portions of the code originally
+ * derived from work by Geoff Leach of RMIT:
+ *
+ * Author: Geoff Leach, Department of Computer Science, RMIT.
+ * email: gl at cs.rmit.edu.au
+ *
+ * Date: 6/10/93
+ *
+ * Version 1.0
+ *
+ * Copyright (c) RMIT 1993. All rights reserved.
+ *
+ * License to copy and use this software purposes is granted provided
+ * that appropriate credit is given to both RMIT and the author.
+ *
+ * License is also granted to make and use derivative works provided
+ * that appropriate credit is given to both RMIT and the author.
+ *
+ * RMIT makes no representations concerning either the merchantability
+ * of this software or the suitability of this software for any particular
+ * purpose. It is provided "as is" without express or implied warranty
+ * of any kind.
+ *
+ * These notices must be retained in any copies of any part of this software.
+ *
+ **************************************************************/
+
#include <stddef.h>
#include "defs.h"
#include "data_types.h"
Modified: grass/trunk/vector/v.delaunay/in_out.c
===================================================================
--- grass/trunk/vector/v.delaunay/in_out.c 2010-02-03 08:12:55 UTC (rev 40789)
+++ grass/trunk/vector/v.delaunay/in_out.c 2010-02-03 10:24:59 UTC (rev 40790)
@@ -1,3 +1,47 @@
+/***************************************************************
+ *
+ * MODULE: v.delaunay
+ *
+ * AUTHOR(S): Martin Pavlovsky (Google SoC 2008, Paul Kelly mentor)
+ * Based on "dct" by Geoff Leach, Department of Computer
+ * Science, RMIT.
+ *
+ * PURPOSE: Creates a Delaunay triangulation vector map
+ *
+ * COPYRIGHT: (C) RMIT 1993
+ * (C) 2008-2009 by the GRASS Development Team
+ *
+ * This program is free software under the GNU General
+ * Public License (>=v2). Read the file COPYING that
+ * comes with GRASS for details.
+ *
+ * The following notices apply to portions of the code originally
+ * derived from work by Geoff Leach of RMIT:
+ *
+ * Author: Geoff Leach, Department of Computer Science, RMIT.
+ * email: gl at cs.rmit.edu.au
+ *
+ * Date: 6/10/93
+ *
+ * Version 1.0
+ *
+ * Copyright (c) RMIT 1993. All rights reserved.
+ *
+ * License to copy and use this software purposes is granted provided
+ * that appropriate credit is given to both RMIT and the author.
+ *
+ * License is also granted to make and use derivative works provided
+ * that appropriate credit is given to both RMIT and the author.
+ *
+ * RMIT makes no representations concerning either the merchantability
+ * of this software or the suitability of this software for any particular
+ * purpose. It is provided "as is" without express or implied warranty
+ * of any kind.
+ *
+ * These notices must be retained in any copies of any part of this software.
+ *
+ **************************************************************/
+
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
Modified: grass/trunk/vector/v.delaunay/main.c
===================================================================
--- grass/trunk/vector/v.delaunay/main.c 2010-02-03 08:12:55 UTC (rev 40789)
+++ grass/trunk/vector/v.delaunay/main.c 2010-02-03 10:24:59 UTC (rev 40790)
@@ -3,15 +3,43 @@
* MODULE: v.delaunay
*
* AUTHOR(S): Martin Pavlovsky (Google SoC 2008, Paul Kelly mentor)
+ * Based on "dct" by Geoff Leach, Department of Computer
+ * Science, RMIT.
*
* PURPOSE: Creates a Delaunay triangulation vector map
*
- * COPYRIGHT: (C) 2008-2009 by the GRASS Development Team
+ * COPYRIGHT: (C) RMIT 1993
+ * (C) 2008-2009 by the GRASS Development Team
*
* This program is free software under the GNU General
* Public License (>=v2). Read the file COPYING that
* comes with GRASS for details.
+ *
+ * The following notices apply to portions of the code originally
+ * derived from work by Geoff Leach of RMIT:
*
+ * Author: Geoff Leach, Department of Computer Science, RMIT.
+ * email: gl at cs.rmit.edu.au
+ *
+ * Date: 6/10/93
+ *
+ * Version 1.0
+ *
+ * Copyright (c) RMIT 1993. All rights reserved.
+ *
+ * License to copy and use this software purposes is granted provided
+ * that appropriate credit is given to both RMIT and the author.
+ *
+ * License is also granted to make and use derivative works provided
+ * that appropriate credit is given to both RMIT and the author.
+ *
+ * RMIT makes no representations concerning either the merchantability
+ * of this software or the suitability of this software for any particular
+ * purpose. It is provided "as is" without express or implied warranty
+ * of any kind.
+ *
+ * These notices must be retained in any copies of any part of this software.
+ *
**************************************************************/
#define MAIN
Modified: grass/trunk/vector/v.delaunay/memory.c
===================================================================
--- grass/trunk/vector/v.delaunay/memory.c 2010-02-03 08:12:55 UTC (rev 40789)
+++ grass/trunk/vector/v.delaunay/memory.c 2010-02-03 10:24:59 UTC (rev 40790)
@@ -1,3 +1,47 @@
+/***************************************************************
+ *
+ * MODULE: v.delaunay
+ *
+ * AUTHOR(S): Martin Pavlovsky (Google SoC 2008, Paul Kelly mentor)
+ * Based on "dct" by Geoff Leach, Department of Computer
+ * Science, RMIT.
+ *
+ * PURPOSE: Creates a Delaunay triangulation vector map
+ *
+ * COPYRIGHT: (C) RMIT 1993
+ * (C) 2008-2009 by the GRASS Development Team
+ *
+ * This program is free software under the GNU General
+ * Public License (>=v2). Read the file COPYING that
+ * comes with GRASS for details.
+ *
+ * The following notices apply to portions of the code originally
+ * derived from work by Geoff Leach of RMIT:
+ *
+ * Author: Geoff Leach, Department of Computer Science, RMIT.
+ * email: gl at cs.rmit.edu.au
+ *
+ * Date: 6/10/93
+ *
+ * Version 1.0
+ *
+ * Copyright (c) RMIT 1993. All rights reserved.
+ *
+ * License to copy and use this software purposes is granted provided
+ * that appropriate credit is given to both RMIT and the author.
+ *
+ * License is also granted to make and use derivative works provided
+ * that appropriate credit is given to both RMIT and the author.
+ *
+ * RMIT makes no representations concerning either the merchantability
+ * of this software or the suitability of this software for any particular
+ * purpose. It is provided "as is" without express or implied warranty
+ * of any kind.
+ *
+ * These notices must be retained in any copies of any part of this software.
+ *
+ **************************************************************/
+
#include <stdlib.h>
#include <grass/gis.h>
#include <grass/glocale.h>
Modified: grass/trunk/vector/v.delaunay/v.delaunay.html
===================================================================
--- grass/trunk/vector/v.delaunay/v.delaunay.html 2010-02-03 08:12:55 UTC (rev 40789)
+++ grass/trunk/vector/v.delaunay/v.delaunay.html 2010-02-03 10:24:59 UTC (rev 40790)
@@ -44,7 +44,9 @@
<H2>AUTHORS</H2>
Martin Pavlovsky, Google Summer of Code 2008, Student<br>
Paul Kelly, Mentor<br>
+Based on "dct" by Geoff Leach, Department of Computer Science, RMIT.<br>
+
<p>
<i>Last changed: $Date: (Mon, 18 Aug 2008) $</i></p>
More information about the grass-commit
mailing list