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
Keine einzelnen Werte mehr durch alle Schichten ziehen!
Also nicht mehr
double trq = MyClimbData.TRQ(a,b,c,d,e)
sondern
TClimbDataPoint tmp = MyClimbData.ClimbData(a,b,c,d,e)
double trq = tmp.TRQ()
oder direkt
double trq = MyClimbData.ClimbData(a,b,c,d,e).TRQ()
The text was updated successfully, but these errors were encountered:
Keine einzelnen Werte mehr durch alle Schichten ziehen!
Also nicht mehr
double trq = MyClimbData.TRQ(a,b,c,d,e)
sondern
TClimbDataPoint tmp = MyClimbData.ClimbData(a,b,c,d,e)
double trq = tmp.TRQ()
oder direkt
double trq = MyClimbData.ClimbData(a,b,c,d,e).TRQ()
The text was updated successfully, but these errors were encountered: