Version für alte Androidversionen der Visiereinstellung für Recurvebogen.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

TrajectoryCalculation.java 377B

1234567891011121314
  1. /**
  2. * Copyright (C) 2012-2022 spherIC.net
  3. *
  4. * @author Florindo Smilari
  5. */
  6. package ch.spherIC.recurvebowsight;
  7. public interface TrajectoryCalculation {
  8. void updateTrajectoryTxtFld(Integer step, Double[] flightCurveRow, Double startAngle, Double[] maxHCurve);
  9. void onCalculationDone(Double[][] flightCurve, Double startAngle, Double[] maxHCurve);
  10. }