Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Scripts/rhinoscript/mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ def MeshClosestPoint(object_id, point, maximum_distance=None):
[1] = the index of the mesh face on which the 3-D point lies
None: on error
Example:
import rhinocriptsyntax as rs
import rhinoscriptsyntax as rs
obj = rs.GetObject("Select mesh", rs.filter.mesh)
point = rs.GetPoint("Pick test point")
intersect = rs.MeshClosestPoint(obj, point)
Expand Down
2 changes: 1 addition & 1 deletion Scripts/rhinoscript/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -1558,7 +1558,7 @@ def ZoomSelected(view=None, all=False):
Returns:
None
Example:
import rhinocriptsyntax as rs
import rhinoscriptsyntax as rs
obj = rs.GetObject("Select object", select=True)
if obj: rs.ZoomSelected()
See Also:
Expand Down