Uses of Class
net.sf.j3d.threeD.raytracer.primitives.Polynomial

Packages that use Polynomial
net.sf.j3d.threeD.raytracer.primitives   
net.sf.j3d.threeD.ui.dialogs   
 

Uses of Polynomial in net.sf.j3d.threeD.raytracer.primitives
 

Methods in net.sf.j3d.threeD.raytracer.primitives that return Polynomial
 Polynomial Polynomial.add(Polynomial polynomial)
          Combines the terms of this Polynomial object and the specified Polynomial object and returns the sum as a Polynomial object.
 Polynomial Polynomial.expand(int power)
          Multiplies this Polynomial object with itself as many times as indicated by the specified integer value.
 Polynomial Polynomial.getDx()
          Returns a Polynomial object that represents the partial derivative of the polynomial function represented by this Polynomial object with respect to X.
 Polynomial Polynomial.getDy()
          Returns a Polynomial object that represents the partial derivative of the polynomial function represented by this Polynomial object with respect to Y.
 Polynomial Polynomial.getDz()
          Returns a Polynomial object that represents the partial derivative of the polynomial function represented by this Polynomial object with respect to Z.
 Polynomial Polynomial.multiply(Polynomial polynomial)
          Calculates the product of the polynomial function represented by this Polynomial object and that of the specified Polynomial object and returns the result as a Polynomial object.
 Polynomial Polynomial.multiply(PolynomialTerm term)
          Calculates the product of the polynomial function represented by this Polynomial object and that of the specified PolynomialTerm object and returns the result as a Polynomial object.
 

Methods in net.sf.j3d.threeD.raytracer.primitives with parameters of type Polynomial
 Polynomial Polynomial.add(Polynomial polynomial)
          Combines the terms of this Polynomial object and the specified Polynomial object and returns the sum as a Polynomial object.
 Polynomial Polynomial.multiply(Polynomial polynomial)
          Calculates the product of the polynomial function represented by this Polynomial object and that of the specified Polynomial object and returns the result as a Polynomial object.
 

Uses of Polynomial in net.sf.j3d.threeD.ui.dialogs
 

Constructors in net.sf.j3d.threeD.ui.dialogs with parameters of type Polynomial
EditPolynomialTermDialog(Polynomial polynomial, int index)
          Constructs a new EditPolynomialTermDialog object that can be used to edit the PolynomialTerm object at the specified index of the specified Polynomial object.
PolynomialTermsListModel(Polynomial polynomial)
          Constructs a new PolynomialTermsListModel that displays the terms of the specified Polynomial object.