[poincare/zoom] Reduce the step for searching points of interest

The algorithm to search for points of interest will miss some. We reduce
the step to make it more precise, so that tan(x) and tan(x-90) have the
same profile.

Change-Id: Ia1bac1d4e7b98d2d6f36f8ce12ed9dac67d40198
This commit is contained in:
Gabriel Ozouf
2020-11-18 10:06:48 +01:00
committed by EmilieNumworks
parent 540209f1a9
commit ca9cb63909

View File

@@ -45,7 +45,7 @@ private:
static constexpr float k_minimalDistance = 1e-2f;
static constexpr float k_asymptoteThreshold = 2e-1f;
static constexpr float k_explosionThreshold = 1e1f;
static constexpr float k_stepFactor = 1.1f;
static constexpr float k_stepFactor = 1.09f;
static constexpr float k_breathingRoom = 0.3f;
static constexpr float k_forceXAxisThreshold = 0.2f;
static constexpr float k_maxRatioBetweenPointsOfInterest = 100.f;