Difference between UV and ST texture coordinates

java, java-3d, opengl, texture-mapping

Solution

They mean the same thing, it's just a different naming convention.

U = S = x dimension
V = T = y dimension

Problem

What's the difference between a UV texture coordinate vs. ST texture Coordinate? I know that UV and ST are used in OpenGL. I also know that ST are also used in Java.

Original source