Final Changes before submission

This commit is contained in:
IDunnoDev
2025-07-04 17:32:39 +01:00
committed by iDunnoDev
parent eeea920e45
commit ab6deb3cc2
7 changed files with 721 additions and 370 deletions

View File

@ -45,12 +45,14 @@ public:
void SetUVIndex(const int index);
float GetZOriginal() const;
void SetZOriginal(const float value);
float GetUOverZ() const;
void SetUOverZ(const float value);
float GetVOverZ() const;
float GetVOverZ() const;
void SetVOverZ(const float value);
float GetZRecip() const;
void UVCorrect(float u, float v);
void SetZRecip(const float value);
void UVCorrect(float u, float v, bool calcZRecip = true);
// Accessors for returning the private x, y, z and w values as integeres instead of floats
// the ceil function to round the number up by defaults but using providing a false param will
@ -76,6 +78,7 @@ private:
float _z;
float _w;
float _zOriginalSet = 0;
float _zOriginal;
int _contributeCount;