changable model sizes

Hello people
I have a smaple model and I want to change it is height,width in real-time by getting those values from a user. So user for example enter height and model will change itself to that value. I really appreciate if you can help me on this or show some direction.

Thanks

sounds like glScale will help you

b

But there is also texture cordinates and animation. How am I going to change texture coordinates according to height? Will just glscale enough?

Thanks

You don´t have to change the texture-coordinates, cause they don´t have anything to do with the size of your model.
Also you should not have to change anything about the animation, cause you still work with the original data, and afterwards glScale will do all the work for you.

It should really be that simple.

Jan.

thanks guys