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.

9 lines
328 B

4 years ago
4 years ago
4 years ago
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() {};
  7. Ray(const Vector3& origin, const Vector3& direction, const Vector3& attenuation);
  8. void Set(const Vector3& origin, const Vector3& direction, const Vector3& attenuation);
  9. Vector3 PointAt(float k) const;
  10. };