Changeset 29186 in osm for applications/editors/josm/plugins/smed2/src/seamap/Renderer.java
- Timestamp:
- 2013-01-10T17:31:17+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed2/src/seamap/Renderer.java
r29185 r29186 112 112 } 113 113 114 public static void symbol(Feature feature, ArrayList<Instr> symbol, Obj obj) {114 public static void symbol(Feature feature, Symbol symbol, Obj obj, Delta delta) { 115 115 Point2D point = helper.getPoint(findCentroid(feature)); 116 116 ArrayList<ColCOL> colours = (ArrayList<ColCOL>) getAttVal(feature, obj, 0, Att.COLOUR); 117 117 ArrayList<ColPAT> pattern = (ArrayList<ColPAT>) getAttVal(feature, obj, 0, Att.COLPAT); 118 Symbols.drawSymbol(g2, symbol, sScale, point.getX(), point.getY(), null, new Scheme(pattern, colours));118 Symbols.drawSymbol(g2, symbol, sScale, point.getX(), point.getY(), delta, new Scheme(pattern, colours)); 119 119 } 120 120
Note:
See TracChangeset
for help on using the changeset viewer.