You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (TickInterval+tickdata.Start == tickdata.Start) continue;
3916
3919
tickdata.nchars = 0; //set nchars to 0, at the end nchars will be the maximum size.
3917
3920
if (i == 1) tickOpt = (TickLayout == 2) ? tickLayout2 : additionalAxesTickOpt; //change style of ticks for supplemental axes
3918
3921
defineLabeling(a, axisId, gdlNoLabelTickFunc, &tickdata); //prevent plplot to write labels (but writes something, so that label positions are reported in getLabelingValues())
Copy file name to clipboardexpand all lines: src/plotting.hpp
+2-2
Original file line number
Diff line number
Diff line change
@@ -155,8 +155,8 @@ struct GDL_TICKDATA {
155
155
SizeT nTickUnits;
156
156
DStringGDL* TickUnits;
157
157
SizeT counter;
158
-
DFloat Start; //used where the span of values in axis matters. //FLOATS as IDL rounds range on floats. Probably uses only floats for graphics. I would do the same.
159
-
DFloat End; //used where the spand of values in axis matters.
158
+
DDouble Start; //used where the span of values in axis matters.
159
+
DDouble End; //used where the spand of values in axis matters.
160
160
double nchars; //length of string *returned* after formatting. Can be non-integer.
0 commit comments