[GRASS-SVN] r34514 - grass-addons/vector/v.parallel2
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Nov 26 16:29:49 EST 2008
Author: neteler
Date: 2008-11-26 16:29:49 -0500 (Wed, 26 Nov 2008)
New Revision: 34514
Modified:
grass-addons/vector/v.parallel2/Makefile
grass-addons/vector/v.parallel2/main.c
Log:
moved here from GRASS Addons
Modified: grass-addons/vector/v.parallel2/Makefile
===================================================================
--- grass-addons/vector/v.parallel2/Makefile 2008-11-26 21:26:09 UTC (rev 34513)
+++ grass-addons/vector/v.parallel2/Makefile 2008-11-26 21:29:49 UTC (rev 34514)
@@ -1,7 +1,6 @@
-
MODULE_TOPDIR = ../..
-PGM = v.parallel2
+PGM = v.parallel
LIBES = $(VECTLIB) $(GISLIB)
DEPENDENCIES= $(VECTDEP) $(GISDEP)
Modified: grass-addons/vector/v.parallel2/main.c
===================================================================
--- grass-addons/vector/v.parallel2/main.c 2008-11-26 21:26:09 UTC (rev 34513)
+++ grass-addons/vector/v.parallel2/main.c 2008-11-26 21:29:49 UTC (rev 34514)
@@ -167,12 +167,13 @@
}
}
-/* Vect_build_partial(&Out, GV_BUILD_BASE, stderr);
- Vect_snap_lines(&Out, GV_BOUNDARY, 1e-7, NULL, stderr);
- Vect_break_lines(&Out, GV_BOUNDARY, NULL, stderr);
- Vect_remove_duplicates(&Out, GV_BOUNDARY, NULL, stderr);
- Vect_build_partial (&Out, GV_BUILD_NONE, NULL); */
- Vect_build (&Out, stderr);
+/* Vect_build_partial(&Out, GV_BUILD_BASE);
+ Vect_snap_lines(&Out, GV_BOUNDARY, 1e-7, NULL);
+ Vect_break_lines(&Out, GV_BOUNDARY, NULL);
+ Vect_remove_duplicates(&Out, GV_BOUNDARY, NULL);
+ Vect_build_partial (&Out, GV_BUILD_NONE);
+ */
+ Vect_build (&Out);
Vect_close (&In);
Vect_close (&Out);
More information about the grass-commit
mailing list