[GRASS-SVN] r37299 - in grass/branches/develbranch_6/ps/ps.map: .
patterns
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed May 20 04:51:37 EDT 2009
Author: hamish
Date: 2009-05-20 04:51:36 -0400 (Wed, 20 May 2009)
New Revision: 37299
Added:
grass/branches/develbranch_6/ps/ps.map/patterns/horiz_zigzag.eps
grass/branches/develbranch_6/ps/ps.map/patterns/railroad_down.eps
grass/branches/develbranch_6/ps/ps.map/patterns/railroad_up.eps
grass/branches/develbranch_6/ps/ps.map/patterns/vert_zigzag.eps
Modified:
grass/branches/develbranch_6/ps/ps.map/description.html
grass/branches/develbranch_6/ps/ps.map/patterns/cross_diag5.eps
grass/branches/develbranch_6/ps/ps.map/patterns/diag_down.eps
grass/branches/develbranch_6/ps/ps.map/patterns/diag_down6.eps
grass/branches/develbranch_6/ps/ps.map/patterns/diag_down_dash.eps
grass/branches/develbranch_6/ps/ps.map/patterns/diag_up.eps
grass/branches/develbranch_6/ps/ps.map/patterns/diag_up6.eps
grass/branches/develbranch_6/ps/ps.map/patterns/diag_up_dash.eps
grass/branches/develbranch_6/ps/ps.map/r_vareas.c
Log:
avoid pattern clipping (thanks for ideas Glynn, Jorge);
add new railroad and zigzag patterns;
accept 'pattern' as alias to 'pat' instruction; fix docs
Modified: grass/branches/develbranch_6/ps/ps.map/description.html
===================================================================
--- grass/branches/develbranch_6/ps/ps.map/description.html 2009-05-20 05:15:35 UTC (rev 37298)
+++ grass/branches/develbranch_6/ps/ps.map/description.html 2009-05-20 08:51:36 UTC (rev 37299)
@@ -1301,9 +1301,10 @@
<B>pat</B> - full path to pattern file. The pattern file contains header and
simple PostScript commands. It is similar to EPS but more limited, meaning that
while each pattern file is a true EPS file, most EPS files are not useful as pattern
-files because they contain restricted commands. Color and width of patterns are set
-by <B>fcolor</B> (red, green, ..., none, R:G:B) and <B>width</B> until
-overwritten in the pattern file.
+files because they contain restricted commands. Color <!-- and width --> of patterns
+are set by <B>fcolor</B> (red, green, ..., none, R:G:B)<!-- no? and <B>width</B>
+until overwritten in the pattern file -->. Color of the boundaries remain set
+by the <B>color</B> instruction.
Pattern may be scaled with the <b>scale</b> command. Several standard hatching
patterns are provided in <tt>$GISBASE/etc/paint/patterns/</tt>.
Demonstrative images can be found on the
Modified: grass/branches/develbranch_6/ps/ps.map/patterns/cross_diag5.eps
===================================================================
(Binary files differ)
Modified: grass/branches/develbranch_6/ps/ps.map/patterns/diag_down.eps
===================================================================
(Binary files differ)
Modified: grass/branches/develbranch_6/ps/ps.map/patterns/diag_down6.eps
===================================================================
(Binary files differ)
Modified: grass/branches/develbranch_6/ps/ps.map/patterns/diag_down_dash.eps
===================================================================
(Binary files differ)
Modified: grass/branches/develbranch_6/ps/ps.map/patterns/diag_up.eps
===================================================================
(Binary files differ)
Modified: grass/branches/develbranch_6/ps/ps.map/patterns/diag_up6.eps
===================================================================
(Binary files differ)
Modified: grass/branches/develbranch_6/ps/ps.map/patterns/diag_up_dash.eps
===================================================================
(Binary files differ)
Added: grass/branches/develbranch_6/ps/ps.map/patterns/horiz_zigzag.eps
===================================================================
(Binary files differ)
Property changes on: grass/branches/develbranch_6/ps/ps.map/patterns/horiz_zigzag.eps
___________________________________________________________________
Name: svn:mime-type
+ application/postscript
Added: grass/branches/develbranch_6/ps/ps.map/patterns/railroad_down.eps
===================================================================
(Binary files differ)
Property changes on: grass/branches/develbranch_6/ps/ps.map/patterns/railroad_down.eps
___________________________________________________________________
Name: svn:mime-type
+ application/postscript
Added: grass/branches/develbranch_6/ps/ps.map/patterns/railroad_up.eps
===================================================================
(Binary files differ)
Property changes on: grass/branches/develbranch_6/ps/ps.map/patterns/railroad_up.eps
___________________________________________________________________
Name: svn:mime-type
+ application/postscript
Added: grass/branches/develbranch_6/ps/ps.map/patterns/vert_zigzag.eps
===================================================================
(Binary files differ)
Property changes on: grass/branches/develbranch_6/ps/ps.map/patterns/vert_zigzag.eps
___________________________________________________________________
Name: svn:mime-type
+ application/postscript
Modified: grass/branches/develbranch_6/ps/ps.map/r_vareas.c
===================================================================
--- grass/branches/develbranch_6/ps/ps.map/r_vareas.c 2009-05-20 05:15:35 UTC (rev 37298)
+++ grass/branches/develbranch_6/ps/ps.map/r_vareas.c 2009-05-20 08:51:36 UTC (rev 37299)
@@ -170,7 +170,7 @@
continue;
}
- if (KEY("pat")) {
+ if (KEY("pat") || KEY("pattern")) {
G_chop(data);
vector.layer[vec].pat = G_store(data);
continue;
More information about the grass-commit
mailing list