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. }