UByte2N Struct Reference

vector of 2 normalized unsigned bytes More...

List of all members.

Public Member Functions

 UByte2N (float x, float y)
 constructor taking 2 scalar floats
 UByte2N (Vector2 v)
 constructor taking a Vector2
Vector2 ToVector2 ()
 return the vector as a Vector2
bool Equals (UByte2N v)
 equality test
override bool Equals (Object o)
 equality test
override string ToString ()
 get the string representation of vector value
override int GetHashCode ()
 gets the hash code for this

Static Public Member Functions

static bool operator== (UByte2N v1, UByte2N v2)
 equality operator
static bool operator!= (UByte2N v1, UByte2N v2)
 not equals operator

Public Attributes

UByteN X
 X.
UByteN Y
 Y.

Detailed Description

vector of 2 normalized unsigned bytes


Constructor & Destructor Documentation

UByte2N ( float  x,
float  y 
)

constructor taking 2 scalar floats

Parameters:
xx value to init with
yy value to init with
UByte2N ( Vector2  v)

constructor taking a Vector2

Parameters:
vthe vector to init with

Member Function Documentation

bool Equals ( UByte2N  v)

equality test

Parameters:
vthe vector to compare this to
Returns:
true if this == v, false otherwise
override bool Equals ( Object  o)

equality test

Parameters:
othe object to compare this to
Returns:
true if this == o, false otherwise
override int GetHashCode ( )

gets the hash code for this

Returns:
integer hash code
static bool operator!= ( UByte2N  v1,
UByte2N  v2 
) [static]

not equals operator

Parameters:
v1vector 1
v2vector 2
Returns:
true if v 1 != v 2, false otherwise
static bool operator== ( UByte2N  v1,
UByte2N  v2 
) [static]

equality operator

Parameters:
v1vector 1
v2vector 2
Returns:
true if vector 1 == vector 2, false otherwise
override string ToString ( )

get the string representation of vector value

Returns:
the string representation of vector value
Vector2 ToVector2 ( )

return the vector as a Vector2

Returns:
the vector as a Vector2

Member Data Documentation

X.

Y.