Class Vector3Float

java.lang.Object
edu.nps.moves.dis7.Vector3Float
All Implemented Interfaces:
java.io.Serializable

public class Vector3Float
extends java.lang.Object
implements java.io.Serializable
Three floating point values, x, y, and z. Section 6.2.95 IEEE Std 1278.1-2012, IEEE Standard for Distributed Interactive Simulation—Application Protocols
See Also:
Serialized Form
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected float x
    X value
    protected float y
    y Value
    protected float z
    Z value
  • Constructor Summary

    Constructors 
    Constructor Description
    Vector3Float()
    Constructor
  • Method Summary

    Modifier and Type Method Description
    boolean equals​(java.lang.Object obj)  
    boolean equalsImpl​(java.lang.Object obj)
    Compare all fields that contribute to the state, ignoring transient and static fields, for this and the supplied object
    int getMarshalledSize()
    Returns the size of this serialized object in bytes
    float getX()
    Getter for x
    float getY()
    Getter for y
    float getZ()
    Getter for z
    void marshal​(java.io.DataOutputStream dos)
    Serializes an object to a DataOutputStream.
    void marshal​(java.nio.ByteBuffer buff)
    Packs an object into the ByteBuffer.
    Vector3Float setX​(float pX)
    Setter for x
    Vector3Float setY​(float pY)
    Setter for y
    Vector3Float setZ​(float pZ)
    Setter for z
    java.lang.String toString()  
    int unmarshal​(java.io.DataInputStream dis)
    Unserializes an object from a DataInputStream.
    int unmarshal​(java.nio.ByteBuffer buff)
    Unpacks a Pdu from the underlying data.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • x

      protected float x
      X value
    • y

      protected float y
      y Value
    • z

      protected float z
      Z value
  • Constructor Details

  • Method Details

    • getMarshalledSize

      public int getMarshalledSize()
      Returns the size of this serialized object in bytes
    • setX

      public Vector3Float setX​(float pX)
      Setter for x
    • getX

      public float getX()
      Getter for x
    • setY

      public Vector3Float setY​(float pY)
      Setter for y
    • getY

      public float getY()
      Getter for y
    • setZ

      public Vector3Float setZ​(float pZ)
      Setter for z
    • getZ

      public float getZ()
      Getter for z
    • marshal

      public void marshal​(java.io.DataOutputStream dos) throws java.lang.Exception
      Serializes an object to a DataOutputStream.
      Parameters:
      dos - the OutputStream
      Throws:
      java.lang.Exception - if something goes wrong
      See Also:
      DataOutputStream
    • unmarshal

      public int unmarshal​(java.io.DataInputStream dis) throws java.lang.Exception
      Unserializes an object from a DataInputStream.
      Parameters:
      dis - the InputStream
      Returns:
      unmarshalled size
      Throws:
      java.lang.Exception - if something goes wrong
      See Also:
      DataInputStream
    • marshal

      public void marshal​(java.nio.ByteBuffer buff) throws java.lang.Exception
      Packs an object into the ByteBuffer.
      Parameters:
      buff - The ByteBuffer at the position to begin writing
      Throws:
      java.nio.BufferOverflowException - if buff is too small
      java.nio.ReadOnlyBufferException - if buff is read only
      java.lang.Exception - ByteBuffer-generated exception
      See Also:
      ByteBuffer
    • unmarshal

      public int unmarshal​(java.nio.ByteBuffer buff) throws java.lang.Exception
      Unpacks a Pdu from the underlying data.
      Parameters:
      buff - The ByteBuffer at the position to begin reading
      Returns:
      marshalled size
      Throws:
      java.nio.BufferUnderflowException - if buff is too small
      java.lang.Exception - ByteBuffer-generated exception
      See Also:
      ByteBuffer
    • equals

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

      public boolean equalsImpl​(java.lang.Object obj)
      Compare all fields that contribute to the state, ignoring transient and static fields, for this and the supplied object
      Parameters:
      obj - the object to compare to
      Returns:
      true if the objects are equal, false otherwise.
    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object