You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
321 B

4 years ago
  1. #pragma once
  2. #include "Vector3.h"
  3. class Ray {
  4. public:
  5. Vector3 mOrigin;
  6. Vector3 mDirection;
  7. Vector3 mLightAttenuation;
  8. Ray(const Vector3& origin, const Vector3& direction, Vector3& attenuation);
  9. void Set(const Vector3& origin, const Vector3& direction, Vector3& attenuation);
  10. Vector3 PointAt(float k);
  11. };