summaryrefslogtreecommitdiff
path: root/hw6/src/ray.cpp
blob: 18c839d13c30a1bcb0d939b055305f0f2d64d3ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/******************************************************************/
/* This file is part of the homework assignments for CSCI-427/527 */
/* at The College of William & Mary and authored by Pieter Peers. */
/* No part of this file, whether altered or in original form, can */
/* be distributed or used outside the context of CSCI-427/527     */
/* without consent of either the College of William & Mary or     */
/* Pieter Peers.                                                  */
/******************************************************************/

#include "ray.h"

//////////////////
// Constructors //
//////////////////
ray::ray(const vec3d& origin, const vec3d& direction)
{
  _origin = origin;
  _direction = normalize(direction);
}

ray::ray(const ray& r)
{
  _origin = r._origin;
  _direction = r._direction;
}


///////////////
// Operators //
///////////////
ray& ray::operator=(const ray& r)
{
  _assign(r);
  return *this;
}


vec3d ray::operator()(float t) const
{
  return _origin + t*_direction;
}


float ray::operator()(const vec3d& point) const
{
  return _direction.dot(point - _origin);
}


//////////////
// Mutators //
//////////////
ray& ray::transform(const transformation3d& t)
{
  _origin = t.transformPoint(_origin);
  _direction = t.transformDirection(_direction);
  return *this;
}


ray& ray::inverseTransform(const transformation3d& t)
{
  _origin = t.inverseTransformPoint(_origin);
  _direction = t.inverseTransformDirection(_direction);
  return *this;
}


/////////////////////
// Private Methods //
/////////////////////
void ray::_swap(ray& r)
{
  swap(_origin, r._origin);
  swap(_direction, r._direction);
}


void ray::_assign(const ray& r)
{
  _origin = r._origin;
  _direction = r._direction;
}