com.springrts.ai
Class AIFloat3

java.lang.Object
  extended by Structure
      extended by com.springrts.ai.AIFloat3

public final class AIFloat3
extends Structure

Wrapper for file: rts/ExternalAI/Interface/SAIFloat3.h


Field Summary
 float x
           
 float y
           
 float z
           
 
Constructor Summary
AIFloat3()
           
AIFloat3(AIFloat3 float3)
           
AIFloat3(Color color)
           
AIFloat3(float[] xyz)
           
AIFloat3(float x, float y, float z)
           
AIFloat3(Vector3f vec3f)
           
 
Method Summary
 boolean equals(Object obj)
           
 int hashCode()
           
 void loadInto(float[] xyz)
           
 Color toColor()
           
 String toString()
           
 Vector3f toVector3f()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

x

public float x

y

public float y

z

public float z
Constructor Detail

AIFloat3

public AIFloat3()

AIFloat3

public AIFloat3(AIFloat3 float3)

AIFloat3

public AIFloat3(float x,
                float y,
                float z)

AIFloat3

public AIFloat3(float[] xyz)

AIFloat3

public AIFloat3(Color color)

AIFloat3

public AIFloat3(Vector3f vec3f)
Method Detail

toColor

public Color toColor()

toVector3f

public Vector3f toVector3f()

toString

public String toString()

loadInto

public void loadInto(float[] xyz)

hashCode

public int hashCode()

equals

public boolean equals(Object obj)