🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

What are S and T coordinates?

Started by
2 comments, last by Mike00 23 years, 10 months ago
I hear people talking about these when reffering to textures. What are they? Thanks!
Advertisement
not sure, I use U and V which is simply mapping a triangle with textures
example:
pt: 0,0,0 u = 0, v = 0
pt: 0,1,0 u = 1, v = 0
pt: 0,1,1 u = 1, v = 1
pt 0,0,1 u = 0, v = 1

that will map out a quad with a texture

Why Not?
S = horizontal texture coordinate
T = vertical texture coordinate

U = horizontal texture coordinate
V = vertical texture coordinate

weird, eh?
Thanks!

This topic is closed to new replies.

Advertisement