def from_selection(cls): """Create a ``RhinoPoint`` instance from a selected Rhino point. Returns ------- RhinoPoint A convenience wrapper around the Rhino point object. """ guid = select_point() return cls(guid)
def select(): return select_point()