paysages3d/src/render/software/RayCastingResult.h

26 lines
348 B
C++

#ifndef RAYCASTINGRESULT_H
#define RAYCASTINGRESULT_H
#include "software_global.h"
#include "Color.h"
#include "Vector3.h"
namespace paysages {
namespace software {
class SOFTWARESHARED_EXPORT RayCastingResult
{
public:
RayCastingResult();
bool hit;
Color hit_color;
Vector3 hit_location;
};
}
}
#endif // RAYCASTINGRESULT_H