頂点テクスチャがどのように機能するかを理解しようとしていますが、パラメータが何をするのか理解していません。頂点テクスチャは通常、次のようになります。
vt 0.000000 0.000000
vt 0.010000 0.000000 vt 0.020000 0.000000 vt 0.030000 0.000000
そして、私は最初、それらがテクスチャ画像上のピクセルの(x、y)値であると思いましたが、それはvtの小数では意味がありません。
vtuvwポリゴンジオメトリとフリーフォームジオメトリの両方の頂点ステートメント。
Specifies a texture vertex and its coordinates. A 1D texture
requires only u texture coordinates, a 2D texture requires both u
and v texture coordinates, and a 3D texture requires all three
coordinates.
u is the value for the horizontal direction of the texture.
v is an optional argument.
v is the value for the vertical direction of the texture. The
default is 0.
w is an optional argument.
w is a value for the depth of the texture.The default is 0.
私が見つけたが理解できなかったvtの最も詳細な説明です。