From 94b2da8e604b06e6cb6f3ac96ca3e9d95c4a4d95 Mon Sep 17 00:00:00 2001 From: Gabriel Ozouf Date: Wed, 9 Dec 2020 16:08:46 +0100 Subject: [PATCH] [poincare/zoom] Comment on the representation of ranges --- poincare/include/poincare/zoom.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/poincare/include/poincare/zoom.h b/poincare/include/poincare/zoom.h index 5339d5c50..56bd45871 100644 --- a/poincare/include/poincare/zoom.h +++ b/poincare/include/poincare/zoom.h @@ -4,6 +4,12 @@ #include #include +/* FIXME : This class is concerned with manipulating the ranges of graphing + * window, often represented by four float xMin, xMax, yMin, yMax. Handling + * those same four values has proven repetititve, tredious, and prone to error. + * This code could benefit from a data structure to regroup those values in a + * single object. */ + namespace Poincare { class Zoom {