Interface IOrientable

  • All Known Implementing Classes:
    Camera, Frustum, Light

    public interface IOrientable
    Orientable entities shall implement this interface.
    • Method Summary

      Modifier and Type Method Description
      Vector3 getDirection()
      Gets the direction that the entity is looking at.
      Node getTarget()
      Gets the target that the entity is looking at.
      void setDirection​(Vector3 value)
      Sets the direction that the entity is looking at.
      void setTarget​(Node value)
      Sets the target that the entity is looking at.
    • Method Detail

      • getDirection

        Vector3 getDirection()
        Gets the direction that the entity is looking at.
      • setDirection

        void setDirection​(Vector3 value)
        Sets the direction that the entity is looking at.
        Parameters:
        value - New value
      • getTarget

        Node getTarget()
        Gets the target that the entity is looking at.
      • setTarget

        void setTarget​(Node value)
        Sets the target that the entity is looking at.
        Parameters:
        value - New value