Ignore:
Timestamp:
Oct 21, 2010, 9:47:43 PM (14 years ago)
Author:
toshi
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/localSpectral/src/view/VertexPaintTransformer.java

    r27 r32  
    1818
    1919    public Paint transform(V node) {
    20       if(cluster.contains(node))
    21          return (Paint) Color.GREEN;
     20      if(cluster.contains(node)){
     21         Color c = new Color(0,255,0);
     22         return (Paint) c;
     23      }
    2224      else
    2325         return (Paint) Color.RED;
Note: See TracChangeset for help on using the changeset viewer.