Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/LineClip.java
r3565 r3857 49 49 /** 50 50 * see http://en.wikipedia.org/wiki/Cohen-Sutherland 51 * @return true, if line is visible in the given clip region 51 52 */ 52 53 private boolean cohenSutherland( long x1, long y1, long x2, long y2, long xmin, long ymin, long xmax, long ymax) -
trunk/src/org/openstreetmap/josm/tools/ColorHelper.java
r1371 r3857 31 31 32 32 public static String color2html(Color col) { 33 if (col == null) 34 return null; 33 35 return "#"+int2hex(col.getRed())+int2hex(col.getGreen())+int2hex(col.getBlue()); 34 36 }
Note:
See TracChangeset
for help on using the changeset viewer.