Cleaning for mesh addition.
This commit is contained in:
parent
8e0ce22b57
commit
402f381d10
67 changed files with 655 additions and 456 deletions
|
@ -9,7 +9,7 @@ class DiscretePoint
|
|||
|
||||
public:
|
||||
|
||||
DiscretePoint(unsigned x, unsigned y);
|
||||
DiscretePoint(unsigned x = 0, unsigned y = 0);
|
||||
|
||||
~DiscretePoint();
|
||||
|
||||
|
|
|
@ -6,6 +6,13 @@ Point::Point(double x, double y)
|
|||
{
|
||||
}
|
||||
|
||||
Point::Point(const Point& reference, double offSetX, double offSetY)
|
||||
: mX(reference.getX() + offSetX),
|
||||
mY(reference.getX() + offSetY)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
Point::~Point()
|
||||
{
|
||||
};
|
||||
|
|
|
@ -9,7 +9,7 @@ public:
|
|||
|
||||
Point(double x, double y);
|
||||
|
||||
//Point(const Point& reference, double offSetX, double offSetY);
|
||||
Point(const Point& reference, double offSetX, double offSetY);
|
||||
|
||||
~Point();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue