UV.V

説明

V 座標の値を Double として戻します。

C#構文

// get accessor

Double rtn = UV.V;

VBScript の例

dim u,v

set root = application.activeproject.activescene.root

set obj = root.addgeometry( "Cube", "MeshSurface" )

set triangle = obj.activeprimitive.geometry.Triangles(0)

for each p in triangle.Points

	logmessage "uv = " & p.uv.u & "," & p.uv.v

next