[GRASS-SVN] r40792 -
grass/branches/releasebranch_6_4/vector/v.delaunay2
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Feb 3 05:34:23 EST 2010
Author: pkelly
Date: 2010-02-03 05:34:22 -0500 (Wed, 03 Feb 2010)
New Revision: 40792
Modified:
grass/branches/releasebranch_6_4/vector/v.delaunay2/data_types.h
grass/branches/releasebranch_6_4/vector/v.delaunay2/description.html
grass/branches/releasebranch_6_4/vector/v.delaunay2/edge.c
grass/branches/releasebranch_6_4/vector/v.delaunay2/edge.h
grass/branches/releasebranch_6_4/vector/v.delaunay2/geom_primitives.h
grass/branches/releasebranch_6_4/vector/v.delaunay2/geometry.c
grass/branches/releasebranch_6_4/vector/v.delaunay2/in_out.c
grass/branches/releasebranch_6_4/vector/v.delaunay2/main.c
grass/branches/releasebranch_6_4/vector/v.delaunay2/memory.c
Log:
Acknowledge original source of the code (Geoff Leach, RMIT) and add
appropriate copyright notices.
Modified: grass/branches/releasebranch_6_4/vector/v.delaunay2/data_types.h
===================================================================
--- grass/branches/releasebranch_6_4/vector/v.delaunay2/data_types.h 2010-02-03 10:32:15 UTC (rev 40791)
+++ grass/branches/releasebranch_6_4/vector/v.delaunay2/data_types.h 2010-02-03 10:34:22 UTC (rev 40792)
@@ -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/branches/releasebranch_6_4/vector/v.delaunay2/description.html
===================================================================
--- grass/branches/releasebranch_6_4/vector/v.delaunay2/description.html 2010-02-03 10:32:15 UTC (rev 40791)
+++ grass/branches/releasebranch_6_4/vector/v.delaunay2/description.html 2010-02-03 10:34:22 UTC (rev 40792)
@@ -44,6 +44,7 @@
<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>
Modified: grass/branches/releasebranch_6_4/vector/v.delaunay2/edge.c
===================================================================
--- grass/branches/releasebranch_6_4/vector/v.delaunay2/edge.c 2010-02-03 10:32:15 UTC (rev 40791)
+++ grass/branches/releasebranch_6_4/vector/v.delaunay2/edge.c 2010-02-03 10:34:22 UTC (rev 40792)
@@ -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/branches/releasebranch_6_4/vector/v.delaunay2/edge.h
===================================================================
--- grass/branches/releasebranch_6_4/vector/v.delaunay2/edge.h 2010-02-03 10:32:15 UTC (rev 40791)
+++ grass/branches/releasebranch_6_4/vector/v.delaunay2/edge.h 2010-02-03 10:34:22 UTC (rev 40792)
@@ -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/branches/releasebranch_6_4/vector/v.delaunay2/geom_primitives.h
===================================================================
--- grass/branches/releasebranch_6_4/vector/v.delaunay2/geom_primitives.h 2010-02-03 10:32:15 UTC (rev 40791)
+++ grass/branches/releasebranch_6_4/vector/v.delaunay2/geom_primitives.h 2010-02-03 10:34:22 UTC (rev 40792)
@@ -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/branches/releasebranch_6_4/vector/v.delaunay2/geometry.c
===================================================================
--- grass/branches/releasebranch_6_4/vector/v.delaunay2/geometry.c 2010-02-03 10:32:15 UTC (rev 40791)
+++ grass/branches/releasebranch_6_4/vector/v.delaunay2/geometry.c 2010-02-03 10:34:22 UTC (rev 40792)
@@ -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/branches/releasebranch_6_4/vector/v.delaunay2/in_out.c
===================================================================
--- grass/branches/releasebranch_6_4/vector/v.delaunay2/in_out.c 2010-02-03 10:32:15 UTC (rev 40791)
+++ grass/branches/releasebranch_6_4/vector/v.delaunay2/in_out.c 2010-02-03 10:34:22 UTC (rev 40792)
@@ -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 <unistd.h>
Modified: grass/branches/releasebranch_6_4/vector/v.delaunay2/main.c
===================================================================
--- grass/branches/releasebranch_6_4/vector/v.delaunay2/main.c 2010-02-03 10:32:15 UTC (rev 40791)
+++ grass/branches/releasebranch_6_4/vector/v.delaunay2/main.c 2010-02-03 10:34:22 UTC (rev 40792)
@@ -3,16 +3,44 @@
* MODULE: v.delaunay
*
* AUTHOR(S): Martin Pavlovsky (Paul Kelly mentor)
+ * Based on "dct" by Geoff Leach, Department of Computer
+ * Science, RMIT.
*
* PURPOSE: creates a Delaunay triangulation vector map
*
- * COPYRIGHT: (C) 2008 by the GRASS Development Team
+ * COPYRIGHT: (C) RMIT 1993
+ * (C) 2008 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
#include <stdio.h>
Modified: grass/branches/releasebranch_6_4/vector/v.delaunay2/memory.c
===================================================================
--- grass/branches/releasebranch_6_4/vector/v.delaunay2/memory.c 2010-02-03 10:32:15 UTC (rev 40791)
+++ grass/branches/releasebranch_6_4/vector/v.delaunay2/memory.c 2010-02-03 10:34:22 UTC (rev 40792)
@@ -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>
More information about the grass-commit
mailing list