[GRASS-SVN] r55094 - grass-addons/grass6/vector/v.trimesh
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Feb 17 16:28:01 PST 2013
Author: hamish
Date: 2013-02-17 16:28:01 -0800 (Sun, 17 Feb 2013)
New Revision: 55094
Modified:
grass-addons/grass6/vector/v.trimesh/description.html
grass-addons/grass6/vector/v.trimesh/v.trimesh.c
Log:
whitespace, mention why Triangle is missing
Modified: grass-addons/grass6/vector/v.trimesh/description.html
===================================================================
--- grass-addons/grass6/vector/v.trimesh/description.html 2013-02-17 23:41:43 UTC (rev 55093)
+++ grass-addons/grass6/vector/v.trimesh/description.html 2013-02-18 00:28:01 UTC (rev 55094)
@@ -3,6 +3,13 @@
<em>v.trimesh</em> creates a triangular mesh using Triangle (by
Jonathan Richard Shewchunk).
+
+<h2>NOTES</h2>
+
+The Triangle library is not GPL compatible (it is not free for commercial use)
+so must be sourced and this addon module compiled by the end user.
+
+
<h2>AUTHOR</h2>
Jaime Carrera-Hernandez
Modified: grass-addons/grass6/vector/v.trimesh/v.trimesh.c
===================================================================
--- grass-addons/grass6/vector/v.trimesh/v.trimesh.c 2013-02-17 23:41:43 UTC (rev 55093)
+++ grass-addons/grass6/vector/v.trimesh/v.trimesh.c 2013-02-18 00:28:01 UTC (rev 55094)
@@ -19,14 +19,14 @@
#define REAL double
#endif /* not SINGLE */
-#include<stdio.h>
-#include<stdlib.h>
-#include<unistd.h>
-#include<grass/gis.h>
-#include<grass/Vect.h>
-#include<grass/glocale.h>
-#include<grass/dbmi.h>
-#include"triangle.h"
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <grass/gis.h>
+#include <grass/Vect.h>
+#include <grass/glocale.h>
+#include <grass/dbmi.h>
+#include "triangle.h"
int main(int argc, char *argv[])
{
More information about the grass-commit
mailing list