package io.github.simplexdev.polarize.api.units; /** * This is a functional interface representing a mathematical function Phi, which returns the azimuth value. *

* The interface has a single method 'getAzimuth' which returns a double value representing the azimuth. *

* This interface is marked with the @FunctionalInterface annotation which indicates that it should be *

* used as a functional interface with a single abstract method (SAM). * * @see Azimuth */ @FunctionalInterface public interface Phi { /** * This method returns a double value representing the azimuth. * * @return the azimuth value as a double */ double getAzimuth(); }