[Plugin] Zorro2 (beta)
-
@kwistenbiebel said:
I draw the cut line by clicking two points but it doesn't cut. (using the updated version)
Any errors in the Ruby Console?? Did you read the tutorial? -
Hi Whaat
It works perfectly. Slide model at section is really a good improvement.
MALAISE
-
immensely
PS Dale could you add create section cuts from multiplesections all together at once? -
Absolutly brilliant and so easy to use!
Just for quibble "main_menu.add_item("Zorro")" must be "main_menu.add_item("Zorro2")" -
@whaat said:
@kwistenbiebel said:
I draw the cut line by clicking two points but it doesn't cut. (using the updated version)
Any errors in the Ruby Console?? Did you read the tutorial?I deleted the old zorro.rb and now it works.
Thank you again for this plugin. -
Hi Whaat
Some difficulties using Zorro2. No cutting effects, the white (feather ) arrow is gluing to the cut line.
Let's see my previous post.MALAISE
-
Thanks so much, Whaat.
Superb job developing and packaging this ruby. I look forward to checking it out today.Cheers,
Nigel
-
Thanks for the really good and useful plugin. Is there any chance to have closed section when using with SU section tool.
-
THATS What I've been looking for! Thanks a lot!
-
Awesome plugin! The ability to slice along a section cut face is FANTASTIC! Been waiting for something like that for a while now. Thank you so much!
-
Thank you, again, Dale great tool!
-
THANK YOU!, will definitely give this awesome plugin a try!
-
where can i get the house model displayed on the PDF tutorial? I really like that house and would like to study a bit of american architectural conventions.
-
Gracias Senor Zorro. How can our village ever repay you?
-
Quick one. I've deleted the old zorro ruby from plugins folder. How come under Tools menu I see 2 zorros?
-
@unknownuser said:
I've deleted the old zorro ruby from plugins folder. How come under Tools menu I see 2 zorros?
I'm seeing the same thing Chango70...
-
Its not just Zorro. I've deleted a redundent obj importer (can't remember which) yet it still shows up in my menu?!?
-
@unknownuser said:
"main_menu.add_item("Zorro")" must be "main_menu.add_item("Zorro2")"
-
It may have been Jim's obj importer (at least that's the only one I know of)
-
I added a Feature to your old Version (1.0) to automatic fill faces cut
Sketchup::set_status_text("Draw cut line, Push SHIFT to: Fill-Face-Automatic", SB_PROMPT)
maybe you can added in your current Version? its nice to have
here is the Code.Snipped:
... if (@key=="shift") ents.each {|e| if e.typename == "Edge" then sel.toggle e else sel.remove e end } self.makeface sel end ... def makeface ins ss = ins total_items = ss.count # Total count of all selected entities. x = 0 # faces-added accumulator z = 0 # loop count notAnEdge = 0 # Accumulator for non-Edges ss.each {|e| if e.typename == "Edge" then # find_faces only works on edges. x += e.find_faces # This creates faces if they can created. Returns # faces created. else notAnEdge+=1 # Keep track of selections that were not an edge. end z+=1 # bump loop counter } end
Advertisement