Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When i'm using SpriteBatch.Draw() method i can get vertical or horizontal scaling, for example: new Vector2(1.0f, 2.0f), it mean that my sprite will expand the Y-axe, How can i get diagonally expand (for example 45 or 70 degrees) ?

share|improve this question
When you say 'diagonal,' do you mean on stretching on a rotated sprite? – Sprunth Nov 7 '10 at 18:47
Yes, exactly. sorry for my english – gevgeny Nov 7 '10 at 19:35

2 Answers

up vote 1 down vote accepted

First scale it horizontally and then vertically. If it is 45 degrees, you will scale the same in both directions, if its another angle, you can compute the scales using simple sin/cos functions.

EDIT:

C# example:

float angle = 70; // Direction in degrees
float amount = 1;  // By how many percent (1 = 100 %)
float radAngle = (angle / 180) * Math.PI;
float xratio = (1 + Math.cos(radAngle)) * amount;
float yratio = (1 + Math.sin(radAngle)) * amount;
// Then just make a new Vector2(xratio, yratio)

Beware of bugs in that example, I haven't tested it. Wouldn't it also be easier for you to just stretch the sprite using the Vector2 directly?

SpriteBatch.Draw(/* Some stuff */, new Vector2(2.0, 3.0), /* some more stuff */);  // Scale 2x in horizontal and 3x in vertical direction
share|improve this answer
Could you show example? – gevgeny Nov 7 '10 at 18:43
In what language? It's really pretty straightforward... – Karel Petranek Nov 7 '10 at 19:09
C#, if you can. – gevgeny Nov 7 '10 at 19:19
Added the example. – Karel Petranek Nov 7 '10 at 21:14
thanks for you reply, but you don't understand me (or I said incorrect). I try to explain this with an example: You have square, and you need to get rhombus with such ungels: 45, 135, 45, 135 degrees. Can you stretch sprite using scaling and without rotation ? thanks in advise and sorry for my bad english – gevgeny Nov 7 '10 at 23:07
show 6 more comments

alt text

this picture from World Of Goo game

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.