just a quick C++ question here...

Started by
0 comments, last by _nuke_ 22 years, 2 months ago
everybody that uses VB here knows of functions and so do the ppl that use C++ or any other programming lanuage. so here is some VB code... Public function DO_IT(x as integer, y as integer, z as integer) as D3DVECTOR DO_IT.x = x DO_IT.y = y DO_IT.z = z end function I know how to write a function in C++ so I am not that dumb but how do I make it return that D3DVECTOR data type thingy. thanx for your help... _nuke_ "I am the Alpha and the Omega, then again I am nuke"
Advertisement
well for one you shouldent us Integer for vector values :p ( D3D uses singles )

in C++ its somthing like this
D3DVector Do_It(float x, y, z)
{
D3DVector Temp;
Temp.x=x;
Temp.y=y;
Temp.z=z;

return Temp;
};

-Ian
-VBLimitsSorry about the Spelling..

This topic is closed to new replies.

Advertisement