mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
This allows for a great deal of simplifications in the class RangeParamterController. Change-Id: I5de55d4e8e1f598eb13b08fb8f042907f55b2fa8
15 lines
426 B
C++
15 lines
426 B
C++
#include "interactive_curve_view_range_delegate.h"
|
|
#include "interactive_curve_view_range.h"
|
|
#include <cmath>
|
|
#include <float.h>
|
|
|
|
namespace Shared {
|
|
|
|
bool InteractiveCurveViewRangeDelegate::didChangeRange(InteractiveCurveViewRange * interactiveCurveViewRange) {
|
|
/*TODO : De we want to keep this method ?
|
|
* We might want to put some computations in here, like the new Auto and Normailzed statuses. */
|
|
return false;
|
|
}
|
|
|
|
}
|