object.cpp 272 B

1234567891011121314151617
  1. /*
  2. * DoRayMe - a quick and dirty Raytracer
  3. * Object implementation
  4. *
  5. * Created by Manoël Trapier
  6. * Copyright (c) 2020 986-Studio.
  7. *
  8. */
  9. #include <ray.h>
  10. #include <object.h>
  11. #include <intersect.h>
  12. Intersect Object::intersect(Ray r)
  13. {
  14. return Intersect();
  15. };