Android Open Source - libgdx-sample Platform Dependent Methods






From Project

Back to project page libgdx-sample.

License

The source code is released under:

GNU Lesser General Public License

If you think the Android project libgdx-sample listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package ch.epfl.chili.libgdx_sample;
//from  w ww  . ja  v a 2s .co  m
/**
 * A platform independent base for all the simple and short platform dependent methods (camera interface is not one of them)
 * @author Ayberk zgr
 */
public interface PlatformDependentMethods {
  
  /**
   * Gets the tag configuration filename with absolute path. Creates a temporary file if necessary.
   * 
   * @return The tag configuration filename with absolute path
   */
  public String Chilitags_getTagConfigFilename();
  
  /**
   * Gets the camera calibration filename with absolute path. Creates a temporary file if necessary.
   * 
   * @return The camera calibration filename with absolute path
   */
  public String Chilitags_getCalibrationFilename();
  
  /**
   * Prints the given message to the platform's default (standard) output.
   * 
   * @param message The message to be shown
   */
  public void print(String message);
}




Java Source Code List

ch.epfl.chili.libgdx_sample.DeviceCameraController.java
ch.epfl.chili.libgdx_sample.IOSLauncher.java
ch.epfl.chili.libgdx_sample.LibgdxSample.java
ch.epfl.chili.libgdx_sample.PlatformDependentMethods.java
ch.epfl.chili.libgdx_sample.android.AndroidCameraController.java
ch.epfl.chili.libgdx_sample.android.AndroidDependentMethods.java
ch.epfl.chili.libgdx_sample.android.MainActivity.java
ch.epfl.chili.libgdx_sample.client.HtmlLauncher.java
ch.epfl.chili.libgdx_sample.desktop.DesktopCameraController.java
ch.epfl.chili.libgdx_sample.desktop.DesktopDependentMethods.java
ch.epfl.chili.libgdx_sample.desktop.Main.java
ch.epfl.chili.libgdx_sample.util.Size2D.java