
NurbsSurfaceにローカルな、サンプリング座標の V値(Long)を戻します。
set oCube = ActiveSceneRoot.AddGeometry("Cube","NurbsSurface")
set oFacet = oCube.ActivePrimitive.Geometry.Facets(0)
for each oSample in oFacet.Samples
logmessage "The U value of this sample is: " & oSample.USamplingCoordinate
next
|