Author: mes
Date: 2009-12-10 16:58:47 -0800 (Thu, 10 Dec 2009)
New Revision: 18731
Modified:
corelibs/trunk/ding/lib/giny.jar
corelibs/trunk/ding/src/ding/view/GinyUtil.java
Log:
added new VEE node shape
Modified: corelibs/trunk/ding/lib/giny.jar
===================================================================
(Binary files differ)
Modified: corelibs/trunk/ding/src/ding/view/GinyUtil.java
===================================================================
--- corelibs/trunk/ding/src/ding/view/GinyUtil.java 2009-12-11 00:56:27 UTC
(rev 18730)
+++ corelibs/trunk/ding/src/ding/view/GinyUtil.java 2009-12-11 00:58:47 UTC
(rev 18731)
@@ -33,6 +33,7 @@
import static giny.view.NodeView.RECTANGLE;
import static giny.view.NodeView.ROUNDED_RECTANGLE;
import static giny.view.NodeView.TRIANGLE;
+import static giny.view.NodeView.VEE;
/**
*
@@ -71,10 +72,8 @@
return TRIANGLE;
case SHAPE_VEE:
+ return VEE;
- // Not implemented yet.
- return RECTANGLE;
-
default:
return TRIANGLE;
}
@@ -106,6 +105,9 @@
case TRIANGLE:
return SHAPE_TRIANGLE;
+ case VEE:
+ return SHAPE_VEE;
+
default:
return -1;
}
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.