OrientationMatchesSurfaceOrientation Property


Returns true if this face's orientation matches the orientation of the face's surface, false if they have opposite orientations.

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

Syntax

C#
public bool OrientationMatchesSurfaceOrientation { get; }
Visual Basic
Public ReadOnly Property OrientationMatchesSurfaceOrientation As Boolean
	Get
Visual C++
public:
property bool OrientationMatchesSurfaceOrientation {
	bool get ();
}

Remarks

(Revit uses only orientable faces and surfaces). At any point on a face or surface, the face's or surface's orientation is specified by the normal vector at that point. The face's normal vector can be the same or opposite to that of its surface. If OrientationMatchesSurfaceOrientation() is true, then the face’s normal vector is the same as that of its surface at each point on the face, otherwise the normal vectors are opposite. See also Surface::OrientationMatchesParametricOrientation.

See Also