Author: tomithy
Date: 2010-07-29 11:39:23 -0700 (Thu, 29 Jul 2010)
New Revision: 21080
Modified:
cytoscapeweb/branches/gsoc2010/gbeb/src/GBEBView.as
cytoscapeweb/branches/gsoc2010/gbeb/src/gbeb/view/operator/router/Shape.as
cytoscapeweb/branches/gsoc2010/gbeb/src/gbeb/view/render/EdgeRenderer.as
Log:
Modified: cytoscapeweb/branches/gsoc2010/gbeb/src/GBEBView.as
===================================================================
--- cytoscapeweb/branches/gsoc2010/gbeb/src/GBEBView.as 2010-07-29 18:22:47 UTC
(rev 21079)
+++ cytoscapeweb/branches/gsoc2010/gbeb/src/GBEBView.as 2010-07-29 18:39:23 UTC
(rev 21080)
@@ -124,7 +124,7 @@
//var bounds:Rectangle = new Rectangle(0, 0, width, height);
_vis.operators.add(new Labeler("data.name"));
- _vis.operators.add(new GBEBRouter(_bounds, 80 , 0.95));
+ _vis.operators.add(new GBEBRouter(_bounds, 32 , 0.95));
trace("GBEBView: how many times GBEBView called the
GBEBRouter? " + addEventCounter++);
//
##############################################################
Modified:
cytoscapeweb/branches/gsoc2010/gbeb/src/gbeb/view/operator/router/Shape.as
===================================================================
--- cytoscapeweb/branches/gsoc2010/gbeb/src/gbeb/view/operator/router/Shape.as
2010-07-29 18:22:47 UTC (rev 21079)
+++ cytoscapeweb/branches/gsoc2010/gbeb/src/gbeb/view/operator/router/Shape.as
2010-07-29 18:39:23 UTC (rev 21080)
@@ -175,8 +175,9 @@
}
for each (edge in storedDataEdges) {
- edge.lineWidth = edge.lineWidth ;
//lower width gives better visual quality
+ edge.lineWidth = edge.lineWidth /2 ;
//lower width gives better visual quality
edge.shape = Shapes.BEZIER; //Here to change curve
type
+ edge.lineAlpha = 0.5;
var ctrl:Array = edge.props.$controlPointsArray;
var ctrlgradient:Array =
edge.props.$CPGradientArray; //used to store the gradient of each control point
if (ctrl == null)
edge.props.$controlPointsArray = ctrl = [];
Modified:
cytoscapeweb/branches/gsoc2010/gbeb/src/gbeb/view/render/EdgeRenderer.as
===================================================================
--- cytoscapeweb/branches/gsoc2010/gbeb/src/gbeb/view/render/EdgeRenderer.as
2010-07-29 18:22:47 UTC (rev 21079)
+++ cytoscapeweb/branches/gsoc2010/gbeb/src/gbeb/view/render/EdgeRenderer.as
2010-07-29 18:39:23 UTC (rev 21080)
@@ -175,8 +175,8 @@
if(p != null)
{
g.lineStyle(0, 0, 0);
- g.beginFill(0xCDEF12);
- g.drawCircle(p.x, p.y, 5);
+ g.beginFill(0x000000);
+ g.drawCircle(p.x, p.y, 4);
g.endFill();
}
}
--
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.