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.

8 lines
310 B

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