D2d offscreen rendering finish up.

This commit is contained in:
jmsgrogan 2023-01-12 09:18:16 +00:00
parent 8c814ce89f
commit c63138c455
32 changed files with 288 additions and 64 deletions

View file

@ -7,25 +7,13 @@ class Transform
public:
Transform(const Point& location = {}, double scaleX = 1.0, double scaleY = 1.0, double scaleZ = 1.0);
const Point& getLocation() const
{
return mLocation;
}
const Point& getLocation() const;
double getScaleX() const
{
return mScaleX;
}
double getScaleX() const;
double getScaleY() const
{
return mScaleY;
}
double getScaleY() const;
double getScaleZ() const
{
return mScaleZ;
}
double getScaleZ() const;
bool operator==(const Transform& rhs) const
{