Click or drag to resize

MeshTextureCoordinateListSetTextureCoordinate Method (Int32, Point2f)

Sets or adds a texture coordinate to the Texture Coordinate List.

If [index] is less than [Count], the existing coordinate at [index] will be modified.

If [index] equals [Count], a new coordinate is appended to the end of the coordinate list.

If [index] is larger than [Count], the function will return false.

Namespace:  Rhino.Geometry.Collections
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
public bool SetTextureCoordinate(
	int index,
	Point2f tc
)

Parameters

index
Type: SystemInt32
Index of texture coordinate to set.
tc
Type: Rhino.GeometryPoint2f
Texture coordinate point.

Return Value

Type: Boolean
true on success, false on failure.
See Also