UV.AngleTo Method

UVAngleTo Method

Returns the angle between this vector and the specified vector.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 26.0.4.0 (26.0.4.0)
Syntax
public double AngleTo(
	UV source
)
Public Function AngleTo ( 
	source As UV
) As Double
public:
double AngleTo(
	UV^ source
)
member AngleTo : 
        source : UV -> float 

Parameters

source  UV
The specified vector.

Return Value

Double
The real number between 0 and 2*PI equal to the angle between the two vectors in radians.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when source is .
Remarks
The angle is measured counterclockwise.
See Also