|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--Object | +--Sphere
Sphere represents a spherical object
Field Summary | |
Point |
Centre
Holds the point that defines the sphere centre |
double |
Radius
Holds the radius of the sphere |
Fields inherited from class Object |
SurfaceMaterial |
Constructor Summary | |
Sphere()
Create a default sphere |
|
Sphere(Material n,
Point p,
double r)
Create a sphere with the given material, centre and radius Note values are referenced not copied in the new object |
Method Summary | |
double |
intersect(Ray ray)
Find the intersection of the plane and a given ray. |
Vector |
normal(Point p)
Find the normal of an object at the given point on its surface. |
void |
print(SceneWriter os)
Print a human readable version of the sphere definition to the given destination |
void |
read(SceneReader is)
Read the sphere from the given source |
void |
write(SceneWriter os)
Write the sphere to the given destination |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public Point Centre
public double Radius
Constructor Detail |
public Sphere()
public Sphere(Material n, Point p, double r)
n
- the material for the planep
- the centre of the spherer
- the radius of the sphereMethod Detail |
public Vector normal(Point p)
Vector
is created on each call.
normal
in class Object
p
- the surface point to find the normal at
public double intersect(Ray ray)
intersect
in class Object
ray
- the ray to intersect with
double
value that gives the distance
along the ray.public void read(SceneReader is) throws java.io.IOException, java.lang.NumberFormatException
read
in class Object
is
- the source to read from
java.io.IOException
- if the light can not be read
java.io.NumberFormatException
- if there a number format error is encountered
java.lang.NumberFormatException
public void write(SceneWriter os) throws java.io.IOException
write
in class Object
os
- the destination to write to
java.io.IOException
- if the write fails.public void print(SceneWriter os) throws java.io.IOException
print
in class Object
os
- the destination to write to
java.io.IOException
- if the write fails.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |