[uLib Geometry]

- Adds Type combiner.
- change names to image map (WARNING some classess may not be already uploaded)
This commit is contained in:
Andrea Rigoni
2014-11-29 07:25:35 +00:00
parent 41fa82d2ef
commit 891f46d502
27 changed files with 1146 additions and 99 deletions

View File

@@ -67,9 +67,9 @@ public:
public:
VoxRaytracer(ImageData &image) : m_Image(&image) {}
bool GetEntryPoint(const HLine3f line, Vector4f &pt);
bool GetEntryPoint(const HLine3f line, Vector4f &pt) const;
bool GetExitPoint(const HLine3f line, Vector4f &pt);
bool GetExitPoint(const HLine3f line, Vector4f &pt) const;
RayData TraceBetweenPoints(const Vector4f &in, const Vector4f &out) const;