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
当使用 setRange(float min, float max, float step) 这个方法时,会出现经度丢失问题,希望可以修改一下float型数据计算方法。谢谢。 for (float i = minValue; i <= maxValue; i = i + step) { data.add(i); }
这里简单的使用“+”会出问题
The text was updated successfully, but these errors were encountered:
当使用 setRange(float min, float max, float step) 这个方法时,会出现经度丢失问题,希望可以修改一下float型数据计算方法。谢谢。
for (float i = minValue; i <= maxValue; i = i + step) { data.add(i); }
这里简单的使用“+”会出问题
The text was updated successfully, but these errors were encountered: