|
|||||||||
| Home >> All >> java >> awt >> [ geom overview ] | PREV NEXT | ||||||||
Uses of Class
java.awt.geom.Area.Intersection
| Uses of Area.Intersection in java.awt.geom |
| Methods in java.awt.geom that return Area.Intersection | |
(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.lineQuadIntersect(Area.LineSegment l,
Area.QuadSegment c)
Returns the intersections between a line and a quadratic bezier Or null if no intersections are found1 This is done through combining the line's equation with the parametric form of the Bezier and solving the resulting quadratic. |
(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. |
(package private) Area.Intersection |
Area.linesIntersect(Area.LineSegment a,
Area.LineSegment b)
Returns the intersection between two lines, or null if there is no intersection. |
| Methods in java.awt.geom with parameters of type Area.Intersection | |
(package private) int |
Area.Segment.createNode(Area.Segment b,
Area.Intersection i)
Creates a node between this segment and segment b at the given intersection |
protected int |
Area.Segment.createNodes(Area.Segment b,
Area.Intersection[] x)
Creates multiple nodes from a list of intersections, This must be done in the order of ascending parameters, and the parameters must be recalculated in accordance with each split. |
|
|||||||||
| Home >> All >> java >> awt >> [ geom overview ] | PREV NEXT | ||||||||