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.

Pflanze.java 503B

1234567891011121314151617181920212223
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package garten.model;
  7. import java.util.ArrayList;
  8. /**
  9. *
  10. * @author Jan
  11. */
  12. public interface Pflanze extends Position
  13. {
  14. Position eigenePosition = null;
  15. void setPosition();
  16. public ArrayList<float[]> getPoints();
  17. public void setAlgorithm();
  18. public float [] getBoundingBoxes();
  19. }