mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
[apps/shared] Change Interval construction values
This commit is contained in:
@@ -12,9 +12,6 @@ FunctionApp::Snapshot::Snapshot() :
|
||||
m_rangeVersion(0),
|
||||
m_angleUnitVersion(Preferences::AngleUnit::Radian)
|
||||
{
|
||||
m_interval.setStart(0);
|
||||
m_interval.setEnd(10);
|
||||
m_interval.setStep(1);
|
||||
}
|
||||
|
||||
void FunctionApp::Snapshot::reset() {
|
||||
|
||||
@@ -5,10 +5,10 @@ namespace Shared {
|
||||
|
||||
Interval::Interval() :
|
||||
m_numberOfElements(0),
|
||||
m_start(0),
|
||||
m_end(0),
|
||||
m_step(0),
|
||||
m_needCompute(false)
|
||||
m_start(0.0),
|
||||
m_end(10.0),
|
||||
m_step(1.0),
|
||||
m_needCompute(true)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user