Hi all,
I am new in C++, I wonder if anyone could assist me about create a two classes.
Basically I need to create class scale and translate where these two classes are inheritance from transition class.
In the scale class contain e.g
Public:
scale();
~scale
draw();
operator >>;
same as translate.
And the transition class contains:
protected:
vector3D vec;
How can I create these classes ? Can anyone give me some idea please.
Thanks.