Class FVector4

  • All Implemented Interfaces:
    com.aspose.csporter.helpers.Struct<FVector4>, java.io.Serializable, java.lang.Cloneable

    public final class FVector4
    extends java.lang.Object
    implements com.aspose.csporter.helpers.Struct<FVector4>, java.io.Serializable
    A float vector with four components.
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      float w
      The w component.
      float x
      The x component.
      float y
      The y component.
      float z
      The z component.
    • Method Summary

      Modifier and Type Method Description
      FVector4 clone()  
      void copyFrom​(FVector4 src)  
      boolean equals​(java.lang.Object obj)  
      int hashCode()  
      java.lang.String toString()
      Returns a string that represents the FVector4
      • Methods inherited from class java.lang.Object

        finalize, getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • x

        public float x
        The x component.
      • y

        public float y
        The y component.
      • z

        public float z
        The z component.
      • w

        public float w
        The w component.
    • Constructor Detail

      • FVector4

        public FVector4​(float x,
                        float y,
                        float z,
                        float w)
        Initializes a new instance of the FVector4.
      • FVector4

        public FVector4​(float x,
                        float y,
                        float z)
        Initializes a new instance of the FVector4.
      • FVector4

        public FVector4​(java.awt.Color color)
        Initializes a new instance of the FVector4.
      • FVector4

        public FVector4​(Vector4 vec)
        Initializes a new instance of the FVector4.
      • FVector4

        public FVector4​(Vector3 vec)
        Initializes a new instance of the FVector4.
      • FVector4

        public FVector4​(Vector3 vec,
                        float w)
        Initializes a new instance of the FVector4.
      • FVector4

        public FVector4()
    • Method Detail

      • toString

        public java.lang.String toString()
        Returns a string that represents the FVector4
        Overrides:
        toString in class java.lang.Object
      • clone

        public FVector4 clone()
        Specified by:
        clone in interface com.aspose.csporter.helpers.Struct<FVector4>
        Overrides:
        clone in class java.lang.Object
      • copyFrom

        public void copyFrom​(FVector4 src)
        Specified by:
        copyFrom in interface com.aspose.csporter.helpers.Struct<FVector4>
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object