Package models

Examples of models.StarSelector


    sm.repaint();
  }
 
  protected static StarSelector getStarSelector() {
    final double maxMagnitude = ((SkyMap) userInterface.getSkyMap()).getMaxMagnitude();
    return new StarSelector() {

      @Override
      public boolean isSelected(Star candidate) {
        return candidate.isBrighterThan(maxMagnitude);
      }
View Full Code Here

TOP

Related Classes of models.StarSelector

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.