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

Quick Search    Search Deep

Uses of Class
java.awt.geom.Area.CubicSegment

Uses of Area.CubicSegment in java.awt.geom
 

Methods in java.awt.geom that return Area.CubicSegment
(package private)  Area.CubicSegment Area.QuadSegment.getCubicSegment()
          Returns a cubic segment corresponding to this curve
 

Methods in java.awt.geom with parameters of type Area.CubicSegment
private  int Area.getRecursionDepth(Area.CubicSegment curve)
          Returns the recursion depth necessary to approximate the curve by line segments within the error RS_EPSILON.
(package private)  Area.Intersection[] Area.cubicCubicIntersect(Area.CubicSegment curve1, Area.CubicSegment curve2)
          Returns a set of interesections between two Cubic segments Or null if no intersections were found.
(package private)  Area.Intersection[] Area.lineCubicIntersect(Area.LineSegment l, Area.CubicSegment c)
          Returns the intersections between a line and a cubic segment This is done through combining the line's equation with the parametric form of the Bezier and solving the resulting quadratic.