RhinoGetGetPointOnMesh Method (MeshObject, String, Boolean, Point3d) |
Note: This API is now obsolete.
Gets a point constrained to an existing mesh in the document.
Namespace:
Rhino.Input
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax [ObsoleteAttribute("Use version that takes a document.")]
public static Result GetPointOnMesh(
MeshObject meshObject,
string prompt,
bool acceptNothing,
out Point3d point
)
<ObsoleteAttribute("Use version that takes a document.")>
Public Shared Function GetPointOnMesh (
meshObject As MeshObject,
prompt As String,
acceptNothing As Boolean,
<OutAttribute> ByRef point As Point3d
) As Result
Parameters
- meshObject
- Type: Rhino.DocObjectsMeshObject
An mesh object in the document. - prompt
- Type: SystemString
Text prompt. - acceptNothing
- Type: SystemBoolean
true if nothing else should be accepted. - point
- Type: Rhino.GeometryPoint3d
A point value will be assigned to this out parameter during this call.
Return Value
Type:
ResultThe command result based on user choice.
See Also