Add some geometry and mesh.

This commit is contained in:
jmsgrogan 2022-08-03 21:05:01 +01:00
parent 1ee31596fb
commit 877d96462d
21 changed files with 126 additions and 33 deletions

View file

@ -26,12 +26,12 @@ public:
double GetHeight() const
{
return mBottomLeft.GetDeltaY(mTopRight);
return mBottomLeft.getDeltaY(mTopRight);
}
double GetWidth() const
{
return mBottomLeft.GetDeltaX(mTopRight);
return mBottomLeft.getDeltaX(mTopRight);
}
private: