Database
lyke.asc
Associated article: Ray Tracing
Tags: Database C/C++
_RAY TRACING_
by Daniel Lyke
[LISTING ONE]
/* RAYTRACE.HPP */
class RAY
{
double dx, dy, dz; /* Direction vector */
double ox, oy, oz; /* Origin */
public:
RAY(double x, double y, double z, double vx, double vy, double vz);
friend class PLANE;
friend ...


