View Single Post
Grey83
Veteran Member
Join Date: Dec 2014
Location: Ukraine
Old 05-01-2019 , 18:19   Re: [INC] Vector helpers
Reply With Quote #6

PHP Code:
stock void VectorCopy(const float vIn[3], float vOut[3])
{
    
vOut[0] = vIn[0];
    
vOut[1] = vIn[1];
    
vOut[2] = vIn[2];

is equival to vOut = vIn;
LOL
__________________
Grey83 is offline