46 FXVec4f(
const FXfloat v[]):x(v[0]),y(v[1]),z(v[2]),w(v[3]){}
49 FXVec4f(FXfloat xx,FXfloat yy,FXfloat zz,FXfloat ww):x(xx),y(yy),z(zz),w(ww){}
55 const FXfloat&
operator[](FXint i)
const {
return (&x)[i];}
67 FXVec4f&
set(
const FXfloat v[]){x=v[0];y=v[1];z=v[2];w=v[3];
return *
this;}
70 FXVec4f&
set(FXfloat xx,FXfloat yy,FXfloat zz,FXfloat ww){x=xx;y=yy;z=zz;w=ww;
return *
this;}
74 FXVec4f& operator/=(FXfloat n){
return set(x/n,y/n,z/n,w/n); }
78 FXVec4f& operator-=(
const FXVec4f& v){
return set(x-v.x,y-v.y,z-v.z,w-v.w); }
79 FXVec4f& operator%=(
const FXVec4f& v){
return set(x*v.x,y*v.y,z*v.z,w*v.w); }
80 FXVec4f& operator/=(
const FXVec4f& v){
return set(x/v.x,y/v.y,z/v.z,w/v.w); }
83 operator FXfloat*(){
return &x;}
84 operator const FXfloat*()
const {
return &x;}
85 operator FXVec3f&(){
return *
reinterpret_cast<FXVec3f*
>(
this);}
86 operator const FXVec3f&()
const {
return *
reinterpret_cast<const FXVec3f*
>(
this);}
89 FXbool
operator!()
const {
return x==0.0f && y==0.0f && z==0.0f && w==0.0f; }
96 FXfloat
length2()
const {
return w*w+z*z+y*y+x*x; }
97 FXfloat length()
const {
return Math::sqrt(length2()); }
100 FXfloat distance(
const FXVec3f& p)
const;
103 FXbool crosses(
const FXVec3f& a,
const FXVec3f& b)
const;
111 static inline FXfloat operator*(
const FXVec4f& a,
const FXVec4f& b){
return a.x*b.x+a.y*b.y+a.z*b.z+a.w*b.w; }
114 static inline FXVec4f operator*(
const FXVec4f& a,FXfloat n){
return FXVec4f(a.x*n,a.y*n,a.z*n,a.w*n);}
115 static inline FXVec4f operator*(FXfloat n,
const FXVec4f& a){
return FXVec4f(n*a.x,n*a.y,n*a.z,n*a.w);}
116 static inline FXVec4f operator/(
const FXVec4f& a,FXfloat n){
return FXVec4f(a.x/n,a.y/n,a.z/n,a.w/n);}
117 static inline FXVec4f operator/(FXfloat n,
const FXVec4f& a){
return FXVec4f(n/a.x,n/a.y,n/a.z,n/a.w);}
120 static inline FXVec4f operator+(
const FXVec4f& a,
const FXVec4f& b){
return FXVec4f(a.x+b.x,a.y+b.y,a.z+b.z,a.w+b.w); }
121 static inline FXVec4f operator-(
const FXVec4f& a,
const FXVec4f& b){
return FXVec4f(a.x-b.x,a.y-b.y,a.z-b.z,a.w-b.w); }
124 static inline FXVec4f operator%(
const FXVec4f& a,
const FXVec4f& b){
return FXVec4f(a.x*b.x,a.y*b.y,a.z*b.z,a.w*b.w); }
125 static inline FXVec4f operator/(
const FXVec4f& a,
const FXVec4f& b){
return FXVec4f(a.x/b.x,a.y/b.y,a.z/b.z,a.w/b.w); }
128 static inline FXbool operator==(
const FXVec4f& a,FXfloat n){
return a.x==n && a.y==n && a.z==n && a.w==n;}
129 static inline FXbool operator!=(
const FXVec4f& a,FXfloat n){
return a.x!=n || a.y!=n || a.z!=n || a.w!=n;}
130 static inline FXbool operator==(FXfloat n,
const FXVec4f& a){
return n==a.x && n==a.y && n==a.z && n==a.w;}
131 static inline FXbool operator!=(FXfloat n,
const FXVec4f& a){
return n!=a.x || n!=a.y || n!=a.z || n!=a.w;}
134 static inline FXbool operator==(
const FXVec4f& a,
const FXVec4f& b){
return a.x==b.x && a.y==b.y && a.z==b.z && a.w==b.w; }
135 static inline FXbool operator!=(
const FXVec4f& a,
const FXVec4f& b){
return a.x!=b.x || a.y!=b.y || a.z!=b.z || a.w!=b.w; }
138 static inline FXbool operator<(
const FXVec4f& a,FXfloat n){
return a.x<n && a.y<n && a.z<n && a.w<n;}
139 static inline FXbool operator<=(
const FXVec4f& a,FXfloat n){
return a.x<=n && a.y<=n && a.z<=n && a.w<=n;}
140 static inline FXbool operator>(
const FXVec4f& a,FXfloat n){
return a.x>n && a.y>n && a.z>n && a.w>n;}
141 static inline FXbool operator>=(
const FXVec4f& a,FXfloat n){
return a.x>=n && a.y>=n && a.z>=n && a.w>=n;}
144 static inline FXbool operator<(FXfloat n,
const FXVec4f& a){
return n<a.x && n<a.y && n<a.z && n<a.w;}
145 static inline FXbool operator<=(FXfloat n,
const FXVec4f& a){
return n<=a.x && n<=a.y && n<=a.z && n<=a.w;}
146 static inline FXbool operator>(FXfloat n,
const FXVec4f& a){
return n>a.x && n>a.y && n>a.z && n>a.w;}
147 static inline FXbool operator>=(FXfloat n,
const FXVec4f& a){
return n>=a.x && n>=a.y && n>=a.z && n>=a.w;}
150 static inline FXbool operator<(
const FXVec4f& a,
const FXVec4f& b){
return a.x<b.x && a.y<b.y && a.z<b.z && a.w<b.w; }
151 static inline FXbool operator<=(
const FXVec4f& a,
const FXVec4f& b){
return a.x<=b.x && a.y<=b.y && a.z<=b.z && a.w<=b.w; }
152 static inline FXbool operator>(
const FXVec4f& a,
const FXVec4f& b){
return a.x>b.x && a.y>b.y && a.z>b.z && a.w>b.w; }
153 static inline FXbool operator>=(
const FXVec4f& a,
const FXVec4f& b){
return a.x>=b.x && a.y>=b.y && a.z>=b.z && a.w>=b.w; }
156 static inline FXVec4f lo(
const FXVec4f& a,
const FXVec4f& b){
return FXVec4f(Math::fmin(a.x,b.x),Math::fmin(a.y,b.y),Math::fmin(a.z,b.z),Math::fmin(a.w,b.w));}
157 static inline FXVec4f lo(
const FXVec4f& a,FXfloat n){
return FXVec4f(Math::fmin(a.x,n),Math::fmin(a.y,n),Math::fmin(a.z,n),Math::fmin(a.w,n));}
158 static inline FXVec4f lo(FXfloat n,
const FXVec4f& b){
return FXVec4f(Math::fmin(n,b.x),Math::fmin(n,b.y),Math::fmin(n,b.z),Math::fmin(n,b.w));}
161 static inline FXVec4f hi(
const FXVec4f& a,
const FXVec4f& b){
return FXVec4f(Math::fmax(a.x,b.x),Math::fmax(a.y,b.y),Math::fmax(a.z,b.z),Math::fmax(a.w,b.w));}
162 static inline FXVec4f hi(
const FXVec4f& a,FXfloat n){
return FXVec4f(Math::fmax(a.x,n),Math::fmax(a.y,n),Math::fmax(a.z,n),Math::fmax(a.w,n));}
163 static inline FXVec4f hi(FXfloat n,
const FXVec4f& b){
return FXVec4f(Math::fmax(n,b.x),Math::fmax(n,b.y),Math::fmax(n,b.z),Math::fmax(n,b.w));}
166 static inline FXVec4f clamp(FXfloat lower,
const FXVec4f& x,FXfloat upper){
return hi(lo(x,upper),lower);}
169 static inline FXVec4f clamp(
const FXVec4f& x,FXfloat limit){
return hi(lo(x,limit),-limit);}
172 static inline FXVec4f clamp(
const FXVec4f& lower,
const FXVec4f& x,
const FXVec4f& upper){
return hi(lo(x,upper),lower);}
175 static inline FXVec4f clamp(
const FXVec4f& x,
const FXVec4f& limit){
return hi(lo(x,limit),-limit);}
178 static inline FXVec4f abs(
const FXVec4f& a){
return FXVec4f(Math::fabs(a.x),Math::fabs(a.y),Math::fabs(a.z),Math::fabs(a.w));}
181 static inline FXfloat max(
const FXVec4f& a){
return Math::fmax(Math::fmax(a.x,a.y),Math::fmax(a.z,a.w)); }
184 static inline FXfloat min(
const FXVec4f& a){
return Math::fmin(Math::fmin(a.x,a.y),Math::fmin(a.z,a.w)); }
187 static inline FXVec4f lerp(
const FXVec4f& u,
const FXVec4f& v,FXfloat f){
return (v-u)*f+u;}
190 extern FXAPI FXVec4f plane(
const FXVec4f& vec);
193 extern FXAPI FXVec4f plane(
const FXVec3f& vec,FXfloat dist);
196 extern FXAPI FXVec4f plane(
const FXVec3f& vec,
const FXVec3f& p);
199 extern FXAPI FXVec4f plane(
const FXVec3f& a,
const FXVec3f& b,
const FXVec3f& c);
202 extern FXAPI FXColor colorFromVec4f(
const FXVec4f& vec);
205 extern FXAPI FXVec4f colorToVec4f(FXColor clr);
208 extern FXAPI FXVec4f normalize(
const FXVec4f& v);
211 extern FXAPI FXStream& operator<<(FXStream& store,
const FXVec4f& v);
214 extern FXAPI FXStream& operator>>(FXStream& store,FXVec4f& v);
FXVec4f(const FXVec3f &v, FXfloat s=0.0f)
Construct with 3-vector.
Definition: FXVec4f.h:40
FXVec4f()
Default constructor; value is not initialized.
Definition: FXVec4f.h:37
const FXfloat & operator[](FXint i) const
Return a const reference to the ith element.
Definition: FXVec4f.h:55
FXVec4f & operator*=(FXfloat n)
Assigning operators.
Definition: FXVec4f.h:73
FXfloat length2() const
Length and square of length.
Definition: FXVec4f.h:96
FXbool operator!() const
Test if zero.
Definition: FXVec4f.h:89
~FXVec4f()
Destructor.
Definition: FXVec4f.h:106
Definition: FX4Splitter.h:28
FXVec4f operator+() const
Unary.
Definition: FXVec4f.h:92
FXVec4f & operator=(const FXVec4f &v)
Assignment.
Definition: FXVec4f.h:58
FXVec4f(const FXfloat v[])
Construct from array of floats.
Definition: FXVec4f.h:46
Single-precision 3-element vector.
Definition: FXVec3f.h:28
FXVec4f(const FXVec4f &v)
Initialize from another vector.
Definition: FXVec4f.h:43
FXVec4f & operator+=(const FXVec4f &v)
Element-wise assigning operators.
Definition: FXVec4f.h:77
FXVec4f & operator=(const FXfloat v[])
Assignment from array of floats.
Definition: FXVec4f.h:61
FXVec4f(FXfloat xx, FXfloat yy, FXfloat zz, FXfloat ww)
Construct from components.
Definition: FXVec4f.h:49
FXfloat & operator[](FXint i)
Return a non-const reference to the ith element.
Definition: FXVec4f.h:52
Single-precision 4-element vector.
Definition: FXVec4f.h:28