44 #include "stringtool.h"
47 #include "exception.h"
100 {
return ( Vec2.
X == this->X && Vec2.
Y == this->Y ); }
103 {
return ( Vec2.
X != this->X || Vec2.
Y != this->Y ); }
106 {
return ( Vec2.x == this->X && Vec2.y == this->Y ); }
109 {
return ( Vec2.x != this->X || Vec2.y != this->Y ); }
112 {
return ( this->X <= Vec.X && this->
Y <= Vec.
Y); }
115 {
return ( this->
X >= Vec.
X && this->Y >= Vec.
Y); }
228 if ( Length > 1e-08 )
230 Real InvLength = 1.0 / Length;
249 if( VersionAttr && XAttr && YAttr )
279 {
return String(
"Vector2"); }