@@ -422,7 +422,7 @@ void PushLinkedAxis(ImPlotAxis& axis) {
422
422
423
423
void PullLinkedAxis (ImPlotAxis& axis) {
424
424
if (axis.LinkedMin ) { axis.SetMin (*axis.LinkedMin ); }
425
- if (axis.LinkedMax ) { axis.SetMax (*axis.LinkedMax ); }
425
+ if (axis.LinkedMax ) { axis.SetMax (*axis.LinkedMax ); }
426
426
}
427
427
428
428
// -----------------------------------------------------------------------------
@@ -600,13 +600,13 @@ void AddTicksCustom(const double* values, const char** labels, int n, ImPlotTick
600
600
601
601
// this may not be thread safe?
602
602
static const double TimeUnitSpans[ImPlotTimeUnit_COUNT] = {
603
- 0.000001 ,
604
- 0.001 ,
605
- 1 ,
606
- 60 ,
607
- 3600 ,
608
- 86400 ,
609
- 2629800 ,
603
+ 0.000001 ,
604
+ 0.001 ,
605
+ 1 ,
606
+ 60 ,
607
+ 3600 ,
608
+ 86400 ,
609
+ 2629800 ,
610
610
31557600
611
611
};
612
612
@@ -661,10 +661,10 @@ inline int GetTimeStep(int max_divs, ImPlotTimeUnit unit) {
661
661
ImPlotTime MkGmtTime (struct tm *ptm) {
662
662
time_t secs = 0 ;
663
663
int year = ptm->tm_year + 1900 ;
664
- for (int y = 1970 ; y < year; ++y)
665
- secs += (IsLeapYear (y)? 366 : 365 ) * 86400 ;
666
- for (int m = 0 ; m < ptm->tm_mon ; ++m)
667
- secs += GetDaysInMonth (year, m) * 86400 ;
664
+ for (int y = 1970 ; y < year; ++y)
665
+ secs += (IsLeapYear (y)? 366 : 365 ) * 86400 ;
666
+ for (int m = 0 ; m < ptm->tm_mon ; ++m)
667
+ secs += GetDaysInMonth (year, m) * 86400 ;
668
668
secs += (ptm->tm_mday - 1 ) * 86400 ;
669
669
secs += ptm->tm_hour * 3600 ;
670
670
secs += ptm->tm_min * 60 ;
@@ -727,12 +727,12 @@ ImPlotTime AddTime(const ImPlotTime& t, ImPlotTimeUnit unit, int count) {
727
727
case ImPlotTimeUnit_Day: t_out.S += count * 86400 ; break ;
728
728
case ImPlotTimeUnit_Mo: for (int i = 0 ; i < count; ++i) { // this might have a bug
729
729
GetTime (t_out, &Tm);
730
- t_out.S += 86400 * GetDaysInMonth (Tm.tm_year + 1900 , Tm.tm_mon );
730
+ t_out.S += 86400 * GetDaysInMonth (Tm.tm_year + 1900 , Tm.tm_mon );
731
731
}
732
732
break ;
733
733
case ImPlotTimeUnit_Yr: for (int i = 0 ; i < count; ++i) {
734
734
if (IsLeapYear (GetYear (t_out)))
735
- t_out.S += 366 * 86400 ;
735
+ t_out.S += 366 * 86400 ;
736
736
else
737
737
t_out.S += 365 * 86400 ;
738
738
}
@@ -809,31 +809,31 @@ int FormatTime(const ImPlotTime& t, char* buffer, int size, ImPlotTimeFmt fmt) {
809
809
810
810
static const char mnames[12 ][4 ] = {" Jan" ," Feb" ," Mar" ," Apr" ," May" ," Jun" ," Jul" ," Aug" ," Sep" ," Oct" ," Nov" ," Dec" };
811
811
812
- switch (fmt) {
813
- case ImPlotTimeFmt_Us: return snprintf (buffer, size, " .%03d %03d" , ms, us);
814
- case ImPlotTimeFmt_SUs: return snprintf (buffer, size, " :%02d.%03d %03d" , sec, ms, us);
815
- case ImPlotTimeFmt_SMs: return snprintf (buffer, size, " :%02d.%03d" , sec, ms);
816
- case ImPlotTimeFmt_S: return snprintf (buffer, size, " :%02d" , sec);
817
- case ImPlotTimeFmt_HrMinS: return snprintf (buffer, size, " %d:%02d:%02d%s" , hr, min, sec, ap);
818
- case ImPlotTimeFmt_HrMin: return snprintf (buffer, size, " %d:%02d%s" , hr, min, ap);
819
- case ImPlotTimeFmt_Hr: return snprintf (buffer, size, " %d%s" , hr, ap);
820
- case ImPlotTimeFmt_DayMo: return snprintf (buffer, size, " %d/%d" , mon, day);
821
- case ImPlotTimeFmt_DayMoHr: return snprintf (buffer, size, " %d/%d %d%s" , mon, day, hr, ap);
822
- case ImPlotTimeFmt_DayMoHrMin: return snprintf (buffer, size, " %d/%d %d:%02d%s" , mon, day, hr, min, ap);
823
- case ImPlotTimeFmt_DayMoYr: return snprintf (buffer, size, " %d/%d/%02d" , mon, day, yr);
824
- case ImPlotTimeFmt_DayMoYrHrMin: return snprintf (buffer, size, " %d/%d/%02d %d:%02d%s" , mon, day, yr, hr, min, ap);
825
- case ImPlotTimeFmt_DayMoYrHrMinS: return snprintf (buffer, size, " %d/%d/%02d %d:%02d:%02d%s" , mon, day, yr, hr, min, sec, ap);
812
+ switch (fmt) {
813
+ case ImPlotTimeFmt_Us: return snprintf (buffer, size, " .%03d %03d" , ms, us);
814
+ case ImPlotTimeFmt_SUs: return snprintf (buffer, size, " :%02d.%03d %03d" , sec, ms, us);
815
+ case ImPlotTimeFmt_SMs: return snprintf (buffer, size, " :%02d.%03d" , sec, ms);
816
+ case ImPlotTimeFmt_S: return snprintf (buffer, size, " :%02d" , sec);
817
+ case ImPlotTimeFmt_HrMinS: return snprintf (buffer, size, " %d:%02d:%02d%s" , hr, min, sec, ap);
818
+ case ImPlotTimeFmt_HrMin: return snprintf (buffer, size, " %d:%02d%s" , hr, min, ap);
819
+ case ImPlotTimeFmt_Hr: return snprintf (buffer, size, " %d%s" , hr, ap);
820
+ case ImPlotTimeFmt_DayMo: return snprintf (buffer, size, " %d/%d" , mon, day);
821
+ case ImPlotTimeFmt_DayMoHr: return snprintf (buffer, size, " %d/%d %d%s" , mon, day, hr, ap);
822
+ case ImPlotTimeFmt_DayMoHrMin: return snprintf (buffer, size, " %d/%d %d:%02d%s" , mon, day, hr, min, ap);
823
+ case ImPlotTimeFmt_DayMoYr: return snprintf (buffer, size, " %d/%d/%02d" , mon, day, yr);
824
+ case ImPlotTimeFmt_DayMoYrHrMin: return snprintf (buffer, size, " %d/%d/%02d %d:%02d%s" , mon, day, yr, hr, min, ap);
825
+ case ImPlotTimeFmt_DayMoYrHrMinS: return snprintf (buffer, size, " %d/%d/%02d %d:%02d:%02d%s" , mon, day, yr, hr, min, sec, ap);
826
826
case ImPlotTimeFmt_MoYr: return snprintf (buffer, size, " %s %d" , mnames[Tm.tm_mon ], year);
827
- case ImPlotTimeFmt_Mo: return snprintf (buffer, size, " %s" , mnames[Tm.tm_mon ]);
828
- case ImPlotTimeFmt_Yr: return snprintf (buffer, size, " %d" , year);
829
- default : return 0 ;
827
+ case ImPlotTimeFmt_Mo: return snprintf (buffer, size, " %s" , mnames[Tm.tm_mon ]);
828
+ case ImPlotTimeFmt_Yr: return snprintf (buffer, size, " %d" , year);
829
+ default : return 0 ;
830
830
}
831
831
}
832
832
833
- void PrintTime (const ImPlotTime& t, ImPlotTimeFmt fmt) {
834
- static char buff[32 ];
835
- FormatTime (t, buff, 32 , fmt);
836
- printf (" %s\n " ,buff);
833
+ void PrintTime (const ImPlotTime& t, ImPlotTimeFmt fmt) {
834
+ static char buff[32 ];
835
+ FormatTime (t, buff, 32 , fmt);
836
+ printf (" %s\n " ,buff);
837
837
}
838
838
839
839
// Returns the nominally largest possible width for a time format
@@ -949,8 +949,8 @@ void AddTicksTime(const ImPlotRange& range, float plot_width, ImPlotTickCollecti
949
949
// generate ticks
950
950
ImPlotTime t1 = FloorTime (ImPlotTime::FromDouble (range.Min ), unit1);
951
951
while (t1 < t_max) {
952
- // get next major
953
- const ImPlotTime t2 = AddTime (t1, unit1, 1 );
952
+ // get next major
953
+ const ImPlotTime t2 = AddTime (t1, unit1, 1 );
954
954
// add major tick
955
955
if (t1 >= t_min && t1 <= t_max) {
956
956
// minor level 0 tick
@@ -961,12 +961,12 @@ void AddTicksTime(const ImPlotRange& range, float plot_width, ImPlotTickCollecti
961
961
// major level 1 tick
962
962
ImPlotTick tick_maj (t1.ToDouble (),true ,true );
963
963
tick_maj.Level = 1 ;
964
- LabelTickTime (tick_maj,ticks.Labels ,t1, last_major == NULL ? fmtf : fmt1);
964
+ LabelTickTime (tick_maj,ticks.Labels ,t1, last_major == NULL ? fmtf : fmt1);
965
965
const char * this_major = ticks.Labels .Buf .Data + tick_maj.BufferOffset ;
966
- if (last_major && TimeLabelSame (last_major,this_major))
967
- tick_maj.ShowLabel = false ;
968
- last_major = this_major;
969
- ticks.AddTick (tick_maj);
966
+ if (last_major && TimeLabelSame (last_major,this_major))
967
+ tick_maj.ShowLabel = false ;
968
+ last_major = this_major;
969
+ ticks.AddTick (tick_maj);
970
970
}
971
971
// add minor ticks up until next major
972
972
if (minor_per_major > 1 && (t_min <= t2 && t1 <= t_max)) {
@@ -987,7 +987,7 @@ void AddTicksTime(const ImPlotRange& range, float plot_width, ImPlotTickCollecti
987
987
}
988
988
}
989
989
t12 = AddTime (t12, unit0, step);
990
- }
990
+ }
991
991
}
992
992
t1 = t2;
993
993
}
@@ -1033,8 +1033,8 @@ void UpdateAxisColors(int axis_flag, ImPlotAxisColor* col) {
1033
1033
// BeginPlot()
1034
1034
// -----------------------------------------------------------------------------
1035
1035
1036
- bool BeginPlot (const char * title, const char * x_label, const char * y_label, const ImVec2& size,
1037
- ImPlotFlags flags, ImPlotAxisFlags x_flags, ImPlotAxisFlags y_flags, ImPlotAxisFlags y2_flags, ImPlotAxisFlags y3_flags)
1036
+ bool BeginPlot (const char * title, const char * x_label, const char * y_label, const ImVec2& size,
1037
+ ImPlotFlags flags, ImPlotAxisFlags x_flags, ImPlotAxisFlags y_flags, ImPlotAxisFlags y2_flags, ImPlotAxisFlags y3_flags)
1038
1038
{
1039
1039
IM_ASSERT_USER_ERROR (GImPlot != NULL , " No current context. Did you call ImPlot::CreateContext() or ImPlot::SetCurrentContext()?" );
1040
1040
ImPlotContext& gp = *GImPlot;
@@ -1115,14 +1115,14 @@ bool BeginPlot(const char* title, const char* x_label, const char* y_label, cons
1115
1115
}
1116
1116
1117
1117
if (gp.NextPlotData .HasXRange ) {
1118
- if (just_created || gp.NextPlotData .XRangeCond == ImGuiCond_Always)
1119
- plot.XAxis .SetRange (gp.NextPlotData .X );
1118
+ if (just_created || gp.NextPlotData .XRangeCond == ImGuiCond_Always)
1119
+ plot.XAxis .SetRange (gp.NextPlotData .X );
1120
1120
}
1121
1121
1122
1122
for (int i = 0 ; i < IMPLOT_Y_AXES; i++) {
1123
1123
if (gp.NextPlotData .HasYRange [i]) {
1124
- if (just_created || gp.NextPlotData .YRangeCond [i] == ImGuiCond_Always)
1125
- plot.YAxis [i].SetRange (gp.NextPlotData .Y [i]);
1124
+ if (just_created || gp.NextPlotData .YRangeCond [i] == ImGuiCond_Always)
1125
+ plot.YAxis [i].SetRange (gp.NextPlotData .Y [i]);
1126
1126
}
1127
1127
}
1128
1128
@@ -1195,8 +1195,8 @@ bool BeginPlot(const char* title, const char* x_label, const char* y_label, cons
1195
1195
const float txt_height = ImGui::GetTextLineHeight ();
1196
1196
1197
1197
const float pad_top = title_size.x > 0 .0f ? txt_height + gp.Style .LabelPadding .y : 0 ;
1198
- const float pad_bot = (gp.X .HasLabels ? txt_height + gp.Style .LabelPadding .y + (gp.X .IsTime ? txt_height + gp.Style .LabelPadding .y : 0 ) : 0 )
1199
- + (x_label ? txt_height + gp.Style .LabelPadding .y : 0 );
1198
+ const float pad_bot = (gp.X .HasLabels ? txt_height + gp.Style .LabelPadding .y + (gp.X .IsTime ? txt_height + gp.Style .LabelPadding .y : 0 ) : 0 )
1199
+ + (x_label ? txt_height + gp.Style .LabelPadding .y : 0 );
1200
1200
1201
1201
const float plot_height = gp.BB_Canvas .GetHeight () - pad_top - pad_bot;
1202
1202
@@ -1605,7 +1605,7 @@ bool BeginPlot(const char* title, const char* x_label, const char* y_label, cons
1605
1605
for (int t = 0 ; t < gp.XTicks .Size ; t++) {
1606
1606
ImPlotTick *xt = &gp.XTicks .Ticks [t];
1607
1607
if (xt->ShowLabel && xt->PixelPos >= gp.BB_Plot .Min .x - 1 && xt->PixelPos <= gp.BB_Plot .Max .x + 1 )
1608
- DrawList.AddText (ImVec2 (xt->PixelPos - xt->LabelSize .x * 0 .5f , gp.BB_Plot .Max .y + gp.Style .LabelPadding .y + xt->Level * (txt_height + gp.Style .LabelPadding .y )),
1608
+ DrawList.AddText (ImVec2 (xt->PixelPos - xt->LabelSize .x * 0 .5f , gp.BB_Plot .Max .y + gp.Style .LabelPadding .y + xt->Level * (txt_height + gp.Style .LabelPadding .y )),
1609
1609
xt->Major ? gp.Col_X .MajTxt : gp.Col_X .MinTxt , gp.XTicks .GetLabel (t));
1610
1610
}
1611
1611
}
@@ -1817,7 +1817,7 @@ void EndPlot() {
1817
1817
if (!ImHasFlag (plot.XAxis .Flags , ImPlotAxisFlags_NoTickMarks)) {
1818
1818
for (int t = 0 ; t < gp.XTicks .Size ; t++) {
1819
1819
ImPlotTick *xt = &gp.XTicks .Ticks [t];
1820
- if (xt->Level == 0 )
1820
+ if (xt->Level == 0 )
1821
1821
DrawList.AddLine (ImVec2 (xt->PixelPos , gp.BB_Plot .Max .y ),
1822
1822
ImVec2 (xt->PixelPos , gp.BB_Plot .Max .y - (xt->Major ? gp.Style .MajorTickLen .x : gp.Style .MinorTickLen .x )),
1823
1823
gp.Col_X .Major ,
0 commit comments