## To Reproduce <!-- If possible, please give a minimal example that triggers the error. --> ```python import cadquery as cq r = cq.Workplane().rect(1,1).extrude(0.1) r = r.faces(">Z").edges(">X").vertices(">Y").line(1,0) ``` ## Backtrace  ## Environment OS: Windows 11 Installed via ``` pip install cadquery ``` Installed version: 2.5.2 Using: CQ-Editor Comment: It seems to me that the issue is that the `Workplane._findFromPoint` function does not accept vertices. Only vectors and edges(?).