Changeset 29199 in osm for applications/editors/josm/plugins/smed2/src/symbols/Symbols.java
- Timestamp:
- 2013-01-15T15:08:25+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed2/src/symbols/Symbols.java
r29198 r29199 108 108 109 109 public static class LineStyle { 110 BasicStroke stroke;111 Color line;112 Color fill;113 114 public LineStyle(BasicStroke istroke, Color iline, Color ifill) { 115 stroke = istroke;110 public Color line; 111 public float width; 112 public float[] dash; 113 public Color fill; 114 115 public LineStyle(Color iline, float iwidth, float[] idash, Color ifill) { 116 116 line = iline; 117 width = iwidth; 118 dash = idash; 117 119 fill = ifill; 118 120 }
Note:
See TracChangeset
for help on using the changeset viewer.
