Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
com.port80.graph.dot.impl.DotSpline

Uses of DotSpline in com.port80.graph.dot.impl
 

Fields in com.port80.graph.dot.impl declared as DotSpline
(package private)  DotSpline VirtualEdge.spline
          Since VirtualEdge merge IEdge in opposite direction together, isReversed don't really meaningful.
(package private)  DotSpline VirtualEdge.fUnclipped
           
private  DotSpline Route.fSpline
           
 

Methods in com.port80.graph.dot.impl that return DotSpline
 DotSpline VirtualEdge.getSpline()
           
 DotSpline VirtualEdge.getUnclipped()
           
private  DotSpline Route.routeRegular(VirtualEdge chaintail)
          Compute the spline points for edge chain starting at edge 'e'.
 

Methods in com.port80.graph.dot.impl with parameters of type DotSpline
 void VirtualEdge.setSpline(DotSpline s, DotSpline unclipped)
           
private  void Route.adjustChain(VirtualGraph graph, VirtualEdge chaintail, DotSpline spline, DotPath path)
          Move virtual vertices to routed locations so that other routing can take advantage of the spare spaces.
private  VirtualEdge Route.straightPath(VirtualEdge e, int len, DotSpline spline)
          Construct a straight spline segment that represent 'len' edges starting at 'e'.
private  void Route.clipInstall(VirtualEdge chaintail, com.port80.graph.IEdge e, DotSpline s, int offset)
          Clip spline to the shape boundary.
private  void Route.clipShape(VirtualVertex v, java.awt.Shape shape, DotSpline spline, int index, boolean istail)
          Clip spline by vertex shape, given 'index' is the tail (left) end of the Bezier that intersect the shape.
private  int Route.clipStartArrow(DotSpline s, int start, int end, com.port80.graph.IEdge e)
          Clip arrow at start of spline (tail arrow if not reversed).
private  int Route.clipEndArrow(DotSpline s, int start, int end, com.port80.graph.IEdge e)
          Clip arrow at end of spline (head arrow if ve is not reversed).
 void DotSpline.splitAt(double t, int index, DotSpline left, DotSpline right, DotPoint ret)
          Split the Bezier curve, started at given index, at a particular parameter value.
 

Constructors in com.port80.graph.dot.impl with parameters of type DotSpline
DotSpline(DotSpline s)
           
DotSpline(DotSpline s, int start, int end)
          Create a new spline from the given segment.