Interface ICamera

    • Method Detail

      • getCamera

        com.badlogic.gdx.graphics.PerspectiveCamera getCamera()
        Returns the perspective camera.
        Returns:
        The perspective camera.
      • setCamera

        void setCamera​(com.badlogic.gdx.graphics.PerspectiveCamera cam)
        Sets the active camera
        Parameters:
        cam -
      • getCameraStereoLeft

        com.badlogic.gdx.graphics.PerspectiveCamera getCameraStereoLeft()
      • getCameraStereoRight

        com.badlogic.gdx.graphics.PerspectiveCamera getCameraStereoRight()
      • setCameraStereoLeft

        void setCameraStereoLeft​(com.badlogic.gdx.graphics.PerspectiveCamera cam)
      • setCameraStereoRight

        void setCameraStereoRight​(com.badlogic.gdx.graphics.PerspectiveCamera cam)
      • getFrontCameras

        com.badlogic.gdx.graphics.PerspectiveCamera[] getFrontCameras()
      • getFovFactor

        float getFovFactor()
      • setDirection

        void setDirection​(Vector3d dir)
      • getInversePos

        Vector3d getInversePos()
      • getDirections

        Vector3d[] getDirections()
      • getNCameras

        int getNCameras()
      • getTranslateUnits

        double getTranslateUnits()
      • update

        void update​(double dt,
                    ITimeFrameProvider time)
        Updates the camera.
        Parameters:
        dt - The time since the las frame in seconds.
        time - The frame time provider (simulation time).
      • updateAngleEdge

        void updateAngleEdge​(int width,
                             int height)
      • getAngleEdge

        float getAngleEdge()
        Gets the angle of the edge of the screen, diagonally. It assumes the vertical angle is the field of view and corrects the horizontal using the aspect ratio. It depends on the viewport size and the field of view itself.
        Returns:
        The angle in radians.
      • render

        void render​(int rw,
                    int rh)
      • getSpeed

        double getSpeed()
        Gets the current velocity of the camera in km/h.
        Returns:
        The velocity in km/h.
      • getDistance

        double getDistance()
        Gets the distance from the camera to the centre of our reference frame (Sun)
        Returns:
        The distance
      • getFocus

        IFocus getFocus()
        Returns the foucs if any
        Returns:
        The foucs object if it is in focus mode. Null otherwise
      • isFocus

        boolean isFocus​(IFocus cb)
        Checks if this body is the current focus
        Parameters:
        cb - The body
        Returns:
        Whether the body is focus
      • checkClosest

        void checkClosest​(IFocus focus)
        Called after updating the body's distance to the cam, it updates the closest body in the camera to figure out the camera near
        Parameters:
        focus - The body to check
      • getClosest

        IFocus getClosest()
      • getClosest2

        IFocus getClosest2()
      • resize

        void resize​(int width,
                    int height)
      • getClosestStar

        IStarFocus getClosestStar()
        Gets the current closest star to this camera
        Returns:
        The closest star
      • setClosestStar

        void setClosestStar​(IStarFocus star)
        Sets the current closest star to this camera. This will be only set if the given star is closer than the current.
        Parameters:
        star - The candidate star