Oops, your profile's looking a bit empty! To help us tailor your experience, please fill in key details like your SketchUp version, skill level, operating system, and more. Update and save your info on your profile page today!
⚠️ Important | Libfredo 15.6b introduces important bugfixes for Fredo's Extensions Update
Size of input point?
-
I have made a script that hides edges when clicked on and it works fine but I would like to be able to set the size of the input point to make it easier to hit the edge.
How can that be done?
Here is the central part of the code that hides the edge.def onLButtonDown(flags, x, y, view) @ip.pick(view,x,y) # Get the current pick object if (@ip.edge) then @ip.edge.hidden = true end # if on a edge, hide it end -
You might try using a Sketchup::PickHelper class interface instead, and the new (SU2016+) window_pick() method.
Otherwise there is no way to change the pick aperture size, and Sketchup::InputPoint would use a "OnEdge" inference anyway.
Advertisement