Changeset 30037 in osm for applications/editors/josm/plugins/smed2/src/seamap/Renderer.java
- Timestamp:
- 2013-11-03T11:49:12+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed2/src/seamap/Renderer.java
r30036 r30037 56 56 Symbols.drawSymbol(g2, symbol, sScale, point.getX(), point.getY(), null, null); 57 57 } 58 59 58 public static void symbol(Feature feature, Symbol symbol, Scheme scheme) { 60 59 Point2D point = context.getPoint(feature.centre); 61 60 Symbols.drawSymbol(g2, symbol, sScale, point.getX(), point.getY(), scheme, null); 62 61 } 63 64 62 public static void symbol(Feature feature, Symbol symbol, Delta delta) { 65 63 Point2D point = context.getPoint(feature.centre); 66 64 Symbols.drawSymbol(g2, symbol, sScale, point.getX(), point.getY(), null, delta); 67 65 } 68 69 66 public static void symbol(Feature feature, Symbol symbol, Scheme scheme, Delta delta) { 70 67 Point2D point = context.getPoint(feature.centre); … … 362 359 } 363 360 361 public static void labelText(Feature feature, String str, Font font, LabelStyle style, Color fg) { 362 labelText(feature, str, font, style, fg, null, null); 363 } 364 public static void labelText(Feature feature, String str, Font font, LabelStyle style, Color fg, Color bg) { 365 labelText(feature, str, font, style, fg, bg, null); 366 } 367 public static void labelText(Feature feature, String str, Font font, LabelStyle style, Color fg, Delta delta) { 368 labelText(feature, str, font, style, fg, null, delta); 369 } 364 370 public static void labelText(Feature feature, String str, Font font, LabelStyle style, Color fg, Color bg, Delta delta) { 365 371 if (delta == null) delta = new Delta(Handle.CC);
Note:
See TracChangeset
for help on using the changeset viewer.