Project a 3D point orthogonally onto a surface (to find the nearest point).
This method is meant to be used when a good approximate solution for the projection is available.
Throws InvalidOperationException if the projection fails.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 23.0.0.0 (23.1.0.0)
Since:
2018.1
Syntax
C# |
---|
public void ProjectWithGuessPoint(
XYZ point,
UV guessUV,
out UV uv,
out double distance
) |
Visual Basic |
---|
Public Sub ProjectWithGuessPoint ( _
point As XYZ, _
guessUV As UV, _
<OutAttribute> ByRef uv As UV, _
<OutAttribute> ByRef distance As Double _
) |
Visual C++ |
---|
public:
void ProjectWithGuessPoint(
XYZ^ point,
UV^ guessUV,
[OutAttribute] UV^% uv,
[OutAttribute] double% distance
) |
Exceptions
See Also