Ignore:
Timestamp:
2013-11-03T11:49:12+01:00 (12 years ago)
Author:
malcolmh
Message:

save

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed2/src/seamap/Renderer.java

    r30036 r30037  
    5656                Symbols.drawSymbol(g2, symbol, sScale, point.getX(), point.getY(), null, null);
    5757        }
    58        
    5958        public static void symbol(Feature feature, Symbol symbol, Scheme scheme) {
    6059                Point2D point = context.getPoint(feature.centre);
    6160                Symbols.drawSymbol(g2, symbol, sScale, point.getX(), point.getY(), scheme, null);
    6261        }
    63        
    6462        public static void symbol(Feature feature, Symbol symbol, Delta delta) {
    6563                Point2D point = context.getPoint(feature.centre);
    6664                Symbols.drawSymbol(g2, symbol, sScale, point.getX(), point.getY(), null, delta);
    6765        }
    68        
    6966        public static void symbol(Feature feature, Symbol symbol, Scheme scheme, Delta delta) {
    7067                Point2D point = context.getPoint(feature.centre);
     
    362359        }
    363360
     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        }
    364370        public static void labelText(Feature feature, String str, Font font, LabelStyle style, Color fg, Color bg, Delta delta) {
    365371                if (delta == null) delta = new Delta(Handle.CC);
Note: See TracChangeset for help on using the changeset viewer.