Jump to content

  • Log In with Google      Sign In   
  • Create Account

Awesome job so far everyone! Please give us your feedback on how our article efforts are going. We still need more finished articles for our May contest theme: Remake the Classics

Basic Transformation


Old topic!
Guest, the last post of this topic is over 60 days old and at this point you may not reply in this topic. If you wish to continue this conversation start a new topic.

  • You cannot reply to this topic
3 replies to this topic

#1 codder88   Members   -  Reputation: 102

Like
0Likes
Like

Posted 09 February 2013 - 01:02 PM

triangle.png

 

Hello everyone,

 

I have that triangle and I want to move top vertex, how can I do that?



Ad:

#2 slicer4ever   Crossbones+   -  Reputation: 1442

Like
0Likes
Like

Posted 09 February 2013 - 07:15 PM

open up your favorite 3D modeling software, select it, and move it over.

 

seriously though, if you only want to move a single vertex, then you need to change it's position before you submit it to the gpu.

 

without seeing what your doing with code, and you telling us what u've learned/why your having problems, then we can't help you.


Edited by slicer4ever, 09 February 2013 - 07:15 PM.

Check out https://www.facebook.com/LiquidGames for some great games made by me on the Playstation Mobile market.

#3 __SKYe   Members   -  Reputation: 452

Like
0Likes
Like

Posted 15 February 2013 - 08:59 AM

IF you're using the old OpenGL, then you're probably using something like this to draw the triangle:

I assume you're using glBegin()/glEnd() pairs, since you don't know how to move a vertex.

glBegin(GL_TRIANGLES);
glVertex3f(-1.0f, -1.0f, 0.0f);
glVertex3f( 1.0f, -1.0f, 0.0f);
glVertex3f( 0.0f,  1.0f, 0.0f); //In this example this is the top vertex
glEnd();

 

So in this code, the top vertex is the last, so to move it, change the values of the last glVertex3f() call.



#4 blueshogun96   Crossbones+   -  Reputation: 445

Like
0Likes
Like

Posted 16 February 2013 - 06:52 PM

I'm a bit confused, do you want to make the triangle a bit taller, or do you actually want to use OpenGL's transformation functions to "resize" it?

 

Shogun.


Shogun3D Development Blog (Last Update: April 11, 2013)

Latest Update: Mac-Metro Anyone?

 

Shogun3D on Tumblr! happy.png





Old topic!
Guest, the last post of this topic is over 60 days old and at this point you may not reply in this topic. If you wish to continue this conversation start a new topic.



PARTNERS