Bezier.rb
-
Bezier.rb has some problems in SU8. It isn't possible to edit a curve once it has been made. The Bezierspline tools had the same problem but Fredo6 fixed that excellent set of tools. Is it possible that one of the Ruby wizards could perform the fix for Bezier.rb?
-
What problems?
Bit of a stab in the dark without specifics. -
Sorry Thomas. I thought you were in on the problem already. In SU8, you can draw the curve but you can't edit the curve. Fredo's Bezierspline tools had the same problem but he fixed it which accounts for the early September updated version.
-
@thomthom said:
What problems?
Bit of a stab in the dark without specifics.Tom,
This is the problem with the PickHelper (here is the code at line 356)
ph = view.pick_helper x, y @selection = ph.pick_segment @pts
I fixed it in BezierSpline a few weeks ago, by adding x, y arguments to
pick_segment
, based on your helpful advice.Fredo
-
What is the difference between the 2 bezier plugins?
-
Just fixed it - I figured it'd be due to the new SU8 bug.
I'll be posting an SU8 version for people to use - and let Google know. -
@dedmin said:
What is the difference between the 2 bezier plugins?
Google's - classic bezier
Fredo's - on steroids! -
-
@unknownuser said:
I fixed it in BezierSpline a few weeks ago, by adding x, y arguments to
pick_segment
, based on your helpful advice.Ah, yea - that should work. Though I fixed it this way:
@unknownuser said:
ph = view.pick_helper x, y
ph.do_pick(x,y) # TT Fix
@selection = ph.pick_segment @ptsAlso worked.
-
Fredo, thank you for explaining.
Thomas, thank you for fixing.
Dedmin, Thomas is correct. Fredo's Bezierspline tools are like Bezier.rb on steroids. Still, there are times I find the classic tool quicker for my use so I like to have both.
D
-
I'm such a muppet and a liar!
I tested in the SU7 window. Doh!. My fix didn't fix. Fixing the fix!
-
No worries. I won't tell.
-
There seems to be a good many scripts that need to be modified for Ver 8. It would be nice if one could arrange for all these modified scripts to be listed in one sticky thread.
Ken
-
@thomthom said:
I'm such a muppet and a liar!
I tested in the SU7 window. Doh!. My fix didn't fix. Fixing the fix!
I think the workaround is
ph = view.pick_helper selection = ph.pick_segment @pts, x, y
This is yours by the way.
Fredo
-
Ja, that was the fix to the fix. You jogged my memory to when we where talking about this when SU8 first came out.
Advertisement