Rings
Version 0.3

Uses of Class
threeD.raytracer.primitives.PolynomialTerm

Packages that use PolynomialTerm
threeD.raytracer.primitives   
 

Uses of PolynomialTerm in threeD.raytracer.primitives
 

Methods in threeD.raytracer.primitives that return PolynomialTerm
 PolynomialTerm PolynomialTerm.getDx()
          Returns the partial derivative of the polynomial term represented by this PolynomialTerm object with respect to X as a PolynomialTerm object.
 PolynomialTerm PolynomialTerm.getDy()
          Returns the partial derivative of the polynomial term represented by this PolynomialTerm object with respect to Y as a PolynomialTerm object.
 PolynomialTerm PolynomialTerm.getDz()
          Returns the partial derivative of the polynomial term represented by this PolynomialTerm object with respect to Z as a PolynomialTerm object.
 PolynomialTerm PolynomialTerm.multiply(PolynomialTerm term)
          Calculates the product of this PolynomialTerm object with the specified PolynomialTerm object and returns the result as a PolynomialTerm object.
 PolynomialTerm[] Polynomial.getTerms()
          Returns the terms of this Polynomial object as an array of PolynomialTerm objects.
 

Methods in threeD.raytracer.primitives with parameters of type PolynomialTerm
 PolynomialTerm PolynomialTerm.multiply(PolynomialTerm term)
          Calculates the product of this PolynomialTerm object with the specified PolynomialTerm object and returns the result as a PolynomialTerm object.
 boolean PolynomialTerm.isLikeTerm(PolynomialTerm term)
          Returns true if the exponents of x, y, and z of this PolynomialTerm object are the same as the specified PolynomialTerm object.
 void Polynomial.setTerms(PolynomialTerm[] terms)
          Sets the terms of this Polynomial object to those specified.
 void Polynomial.addTerm(PolynomialTerm term)
          Adds the specified PolynomialTerm object to this 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.
 

Constructors in threeD.raytracer.primitives with parameters of type PolynomialTerm
Polynomial(PolynomialTerm[] terms)
          Constructs a new Polynomial object with the specified terms.
 


Rings
Version 0.3

Copyright 2003-05 Mike Murray