UV Constructor (Double, Double)


Creates a UV with the supplied coordinates.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 24.0.0.0 (24.0.0.0)

Syntax

C#
public UV(
	double u,
	double v
)
Visual Basic
Public Sub New ( _
	u As Double, _
	v As Double _
)
Visual C++
public:
UV(
	double u, 
	double v
)

Parameters

u
Type: SystemDouble
The first coordinate.
v
Type: SystemDouble
The second coordinate.

Exceptions

ExceptionCondition
Autodesk.Revit.ExceptionsArgumentException Thrown when setting an infinite number to the U or V property.

See Also