Interface ReadOnlyUnitVectorProperty

  • All Superinterfaces:
    javafx.beans.Observable, javafx.beans.value.ObservableValue<Vector3dfx>, javafx.beans.property.ReadOnlyProperty<Vector3dfx>

    public interface ReadOnlyUnitVectorProperty
    extends javafx.beans.property.ReadOnlyProperty<Vector3dfx>
    A JavaFX read-only property that is representing a unit vector.
    Since:
    13.0
    Version:
    17.0 2020-01-04 14:41:49
    Author:
    Stéphane GALLAND, Thomas PIOTROWSKI
    Maven Group Id:
    org.arakhne.afc.advanced
    Maven Artifact Id:
    mathfx
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      Vector3dfx get()
      Returns the current value of this property.
      double getX()
      Replies the x coordinate of the vector.
      double getY()
      Replies the y coordinate of the vector.
      double getZ()
      Replies the z coordinate of the vector.
      • Methods inherited from interface javafx.beans.Observable

        addListener, removeListener
      • Methods inherited from interface javafx.beans.value.ObservableValue

        addListener, getValue, removeListener
      • Methods inherited from interface javafx.beans.property.ReadOnlyProperty

        getBean, getName
    • Method Detail

      • get

        Vector3dfx get()
        Returns the current value of this property.
        Returns:
        the current value.
      • getX

        double getX()
        Replies the x coordinate of the vector.
        Returns:
        the x coordinate of the vector.
      • getY

        double getY()
        Replies the y coordinate of the vector.
        Returns:
        the y coordinate of the vector.
      • getZ

        double getZ()
        Replies the z coordinate of the vector.
        Returns:
        the z coordinate of the vector.