Uses of Class
raytracer.internal.Point

Packages that use Point
raytracer.internal   
raytracer.objects   
 

Uses of Point in raytracer.internal
 

Methods in raytracer.internal that return Point
 Point Point.add(Vector v)
          Adds a vector to a point
 Point Ray.pointAt(float t)
          Returns the point which is t units away (in the ray direction) from the ray starting point
 

Methods in raytracer.internal with parameters of type Point
 Vector Point.sub(Point p)
          Subtracts a point from a point
 

Constructors in raytracer.internal with parameters of type Point
Point(Point p)
          Copy constructor
Ray(Point p, Vector v)
          Creates a ray
 

Uses of Point in raytracer.objects
 

Methods in raytracer.objects that return Point
 Point Light.getPosition()
           
 

Methods in raytracer.objects with parameters of type Point
abstract  boolean Surface.isInside(Point p)
          Determines whether a given point is inside this object or not
abstract  Vector Surface.calcNormal(Point p)
          Calculates the surface normal at the given point