Uses of Class
math.geom2d.conic.Parabola2D

Packages that use Parabola2D
math.geom2d.conic Definition of various conic curves like circles, ellipses, parabolas and hyperbolas, and their respective arcs. 
 

Uses of Parabola2D in math.geom2d.conic
 

Methods in math.geom2d.conic that return Parabola2D
 Parabola2D Parabola2D.clone()
           
static Parabola2D Parabola2D.create(Point2D vertex, Point2D focus)
          Creates a parabola by supplying the vertex and the focus.
 Parabola2D ParabolaArc2D.getParabola()
           
 Parabola2D Parabola2D.reverse()
          Returns the parabola with same vertex, direction vector in opposite direction and opposite parameter p.
 Parabola2D Parabola2D.transform(AffineTransform2D trans)
          Transforms the parabola by an affine transform.
 

Methods in math.geom2d.conic that return types with arguments of type Parabola2D
 java.util.Collection<? extends Parabola2D> Parabola2D.continuousCurves()
           
 

Methods in math.geom2d.conic with parameters of type Parabola2D
static ParabolaArc2D ParabolaArc2D.create(Parabola2D parabola, double t0, double t1)
           
 

Constructors in math.geom2d.conic with parameters of type Parabola2D
ParabolaArc2D(Parabola2D parabola, double t0, double t1)