This commit is contained in:
Saikari
2024-12-17 04:55:13 +03:00
committed by GitHub
parent c0efa35e8a
commit 075c553521
20 changed files with 72 additions and 38 deletions

View File

@@ -5,11 +5,11 @@
#include "omath/Vector3.hpp"
#include "omath/Triangle3d.hpp"
#include "../omath_export.h"
namespace omath::collision
{
class Ray
class OMATH_API Ray
{
public:
Vector3 start;
@@ -21,7 +21,7 @@ namespace omath::collision
[[nodiscard]]
Vector3 DirectionVectorNormalized() const;
};
class LineTracer
class OMATH_API LineTracer
{
public:
LineTracer() = delete;