Hello,
The method below shows the x, y,z positions of all vertices at the beginning of edges for a selected face.
Sketchup.active_model.selection.grep(Sketchup;;Face).each{|f|f.edges.each{|e|p e.start.position}}
I wish to know the position of the vertex down right side for a selected face?
The goal is to find this vertex even if the face is tilted or drawn in any direction.
It's been a while since I study the class "Edges" and "Faces" in the API without success.
Thanks for your help.
Manuel