Skip to content

Commit

Permalink
Final commit
Browse files Browse the repository at this point in the history
  • Loading branch information
imbstack committed Dec 1, 2010
1 parent 1aafd68 commit bb1c6f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ public Font transform(EdmondsVertex edge) {
};
Transformer<EdmondsEdge, Stroke> edgeStrokeTransformer = new Transformer<EdmondsEdge, Stroke>() {
public Stroke transform(EdmondsEdge edge) {
float wid = 6*(float)edge.capacity/EdmondsEdge.maxCapacity;
return new BasicStroke(wid, BasicStroke.CAP_BUTT, BasicStroke.JOIN_MITER, 10.0f);
float wid = 4*(float)edge.capacity/EdmondsEdge.maxCapacity;
return new BasicStroke(wid, BasicStroke.CAP_ROUND, BasicStroke.JOIN_BEVEL);
}
};
vv.getRenderContext().setVertexFillPaintTransformer(vertexPaint);
Expand Down

0 comments on commit bb1c6f0

Please sign in to comment.