Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OpenGL: scale then translate? and how?

Tags:

I've got some 2D geometry. I want to take some bounding rect around my geometry, and then render a smaller version of it somewhere else on the plane. Here's more or less the code I have to do scaling and translation:

// source and dest are arbitrary rectangles. float scaleX = dest.width / source.width; float scaleY = dest.height / source.height; float translateX = dest.x - source.x; float translateY = dest.y - source.y;  glScalef(scaleX, scaleY, 0.0); glTranslatef(translateX, translateY, 0.0); // Draw geometry in question with its normal verts. 

This works exactly as expected for a given dimension when the dest origin is 0. But if the origin for, say, x, is nonzero, the result is still scaled correctly but looks like (?) it's translated to something near zero on that axis anyways-- turns out it's not exactly the same as if dest.x were zero.

Can someone point out something obvious I'm missing?

Thanks!

FINAL UPDATE Per Bahbar's and Marcus's answers below, I did some more experimentation and solved this. Adam Bowen's comment was the tip off. I was missing two critical facts:

  1. I needed to be scaling around the center of the geometry I cared about.
  2. I needed to apply the transforms in the opposite order of the intuition (for me).

The first is kind of obvious in retrospect. But for the latter, for other good programmers/bad mathematicians like me: Turns out my intuition was operating in what the Red Book calls a "Grand, Fixed Coordinate System", in which there is an absolute plane, and your geometry moves around on that plane using transforms. This is OK, but given the nature of the math behind stacking multiple transforms into one matrix, it's the opposite of how things really work (see answers below or Red Book for more). Basically, the transforms are "applied" in "reverse order" to how they appear in code. Here's the final working solution:

// source and dest are arbitrary rectangles. float scaleX = dest.width / source.width; float scaleY = dest.height / source.height; Point sourceCenter = centerPointOfRect(source); Point destCenter = centerPointOfRect(dest);  glTranslatef(destCenter.x, destCenter.y, 0.0); glScalef(scaleX, scaleY, 0.0); glTranslatef(sourceCenter.x * -1.0, sourceCenter.y * -1.0, 0.0); // Draw geometry in question with its normal verts. 
like image 386
Ben Zotto Avatar asked Feb 13 '10 20:02

Ben Zotto


People also ask

How do I translate in OpenGL?

Translation: Translation refers to moving an object to a different position on the screen. Formula: X = x + tx Y = y + ty where tx and ty are translation coordinates The OpenGL function is glTranslatef( tx, ty, tz ); 2. Rotation: Rotation refers to rotating a point.

What is the difference between scaling and translation?

Scaling is for changing the size of the canvas element. Translate is for changing the position of the canvas element.

How do you translate triangles in OpenGL?

You rotate your triangle simply by calculating a transformation matrix, passing it to your vertex shader and multiply it with your coordinates.


1 Answers

In OpenGL, matrices you specify are multiplied to the right of the existing matrix, and the vertex is on the far right of the expression.

Thus, the last operation you specify are in the coordinate system of the geometry itself. (The first is usually the view transform, i.e. inverse of your camera's to-world transform.)

Bahbar makes a good point that you need to consider the center point for scaling. (or the pivot point for rotations.) Usually you translate there, rotate/scale, then translate back. (or in general, apply basis transform, the operation, then the inverse). This is called Change of Basis, which you might want to read up on.

Anyway, to get some intuition about how it works, try with some simple values (zero, etc) then alter them slightly (perhaps an animation) and see what happens with the output. Then it's much easier to see what your transforms are actually doing to your geometry.

Update

That the order is "reversed" w.r.t. intuition is rather common among beginner OpenGL-coders. I've been tutoring a computer graphics course and many react in a similar manner. It becomes easier to think about how OpenGL does it if you consider the use of pushmatrix/popmatrix while rendering a tree (scene-graph) of transforms and geometries. Then the current order-of-things becomes rather natural, and the opposite would make it rather difficult to get anything useful done.

like image 139
Macke Avatar answered Nov 11 '22 07:11

Macke