removed dff model

This commit is contained in:
Sandro Sobczyński
2020-11-01 14:17:52 +01:00
parent ef7bd425db
commit 200fa3e4d5
14 changed files with 163 additions and 201 deletions
+4 -4
View File
@@ -17,7 +17,7 @@
// ----
/** Create by specifying values */
Point::Point(float t_x, float t_y)
Point::Point(const float &t_x, const float &t_y)
{
x = t_x;
y = t_y;
@@ -43,10 +43,10 @@ Point::~Point() {}
// Methods
// ----
void Point::set(float t_x, float t_y)
void Point::set(const float &t_x, const float &t_y)
{
x = x;
y = y;
x = t_x;
y = t_y;
}
void Point::set(const Point &v)