mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 16:35:06 +01:00
vector_math: Add missing member in Vec4's SetZero function
This commit is contained in:
parent
58852bedbf
commit
1400aeceac
@ -447,7 +447,10 @@ public:
|
||||
|
||||
void SetZero()
|
||||
{
|
||||
x=0; y=0; z=0;
|
||||
x = 0;
|
||||
y = 0;
|
||||
z = 0;
|
||||
w = 0;
|
||||
}
|
||||
|
||||
// Common alias: RGBA (colors)
|
||||
|
Loading…
Reference in New Issue
Block a user