| 80 | GETTERSETTER(::Vector3, Normal, normal) |
| 81 | protected: |
| 82 | void set(const ::RayCollision& ray) { |
| 83 | hit = ray.hit; |
| 84 | distance = ray.distance; |
| 85 | point = ray.point; |
| 86 | normal = ray.normal; |
| 87 | } |
| 88 | }; |
| 89 | } // namespace raylib |
| 90 |
nothing calls this directly
no outgoing calls
no test coverage detected