D2d offscreen rendering finish up.
This commit is contained in:
parent
8c814ce89f
commit
c63138c455
32 changed files with 288 additions and 64 deletions
|
@ -8,3 +8,23 @@ Transform::Transform(const Point& location, double scaleX, double scaleY, double
|
|||
{
|
||||
|
||||
}
|
||||
|
||||
const Point& Transform::getLocation() const
|
||||
{
|
||||
return mLocation;
|
||||
}
|
||||
|
||||
double Transform::getScaleX() const
|
||||
{
|
||||
return mScaleX;
|
||||
}
|
||||
|
||||
double Transform::getScaleY() const
|
||||
{
|
||||
return mScaleY;
|
||||
}
|
||||
|
||||
double Transform::getScaleZ() const
|
||||
{
|
||||
return mScaleZ;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue