Version für alte Androidversionen der Visiereinstellung für Recurvebogen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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