From 1d685de8fd905cc26b13857ed3d34da82176725b Mon Sep 17 00:00:00 2001 From: Godzil Date: Sat, 22 Feb 2020 18:29:47 +0000 Subject: [PATCH] Trying to identify why they say these lines are not tested --- source/include/tuple.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/source/include/tuple.h b/source/include/tuple.h index 5b1f337..18b1e19 100644 --- a/source/include/tuple.h +++ b/source/include/tuple.h @@ -22,10 +22,13 @@ public: bool isPoint() { return (this->w == 1.0); }; bool isVector() { return (this->w == 0.0); }; - bool operator==(const Tuple &b) const { return double_equal(this->x, b.x) && - double_equal(this->y, b.y) && - double_equal(this->z, b.z) && - double_equal(this->w, b.w); }; + bool operator==(const Tuple &b) const + { + return double_equal(this->x, b.x) && + double_equal(this->y, b.y) && + double_equal(this->z, b.z) && + double_equal(this->w, b.w); + }; bool operator!=(const Tuple &b) const { return !(*this == b); }; Tuple operator+(const Tuple &b) const { return Tuple(this->x + b.x, this->y + b.y,