NurbsSample.VSamplingCoordinate operator

Description

Returns the U value (Long) of the sampling coordinate local to the NurbsSurface.

C# Syntax

// get accessor

Int32 rtn = NurbsSample.VSamplingCoordinate;

Examples

VBScript Example

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.VSamplingCoordinate

next