Some meshing working.
This commit is contained in:
parent
392a2b7889
commit
d0ab51c99a
18 changed files with 164 additions and 4 deletions
|
@ -9,6 +9,8 @@ public:
|
|||
|
||||
Point(double x, double y);
|
||||
|
||||
//Point(const Point& reference, double offSetX, double offSetY);
|
||||
|
||||
~Point();
|
||||
|
||||
static std::shared_ptr<Point> Create(double x, double y);
|
||||
|
|
|
@ -34,6 +34,11 @@ public:
|
|||
return mBottomLeft.getDeltaX(mTopRight);
|
||||
}
|
||||
|
||||
Point getBottomLeft() const
|
||||
{
|
||||
return mBottomLeft;
|
||||
}
|
||||
|
||||
private:
|
||||
Point mBottomLeft;
|
||||
Point mTopRight;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue