
Vector3 troubles!
Posted Friday, 11 July, 2008 - 10:06 by flopoloco inHi there, how can I convert this piece of code to C#/OpenTK? I have troubles porting Cross and Normalize methods... (Oh boy, do I suck in coding or what ;-) )
Vec3f sum;
Vec3f out;
Vec3f left;
sum += out.cross(left).normalize();


Comments
Re: Vector3 troubles!
Try using the static methods like this:
Re: Vector3 troubles!
Thanks for the help!