Searching for plugin " surface area of selected components"
-
I was wondering if there was a plugin to help calculate total surface areas of all selected entities or components.
-
@mics_54 said:
I was wondering if there was a plugin to help calculate total surface areas of all selected entities or components.
unless file_loaded?((__FILE__)) UI.add_context_menu_handler do |menu| sel = Sketchup.active_model.selection unless sel.empty? menu.add_separator menu.add_item('Surface Area') { sa = 0.0 sel.each{|e| if e.is_a?(Sketchup;;Face) sa += e.area elsif e.is_a?(Sketchup;;Group) if e.manifold? e.entities.grep(Sketchup;;Face){|f| sa += f.area } end elsif e.is_a?(Sketchup;;ComponentInstance) if e.manifold? e.definition.entities.grep(Sketchup;;Face){|f| sa += f.area } end end } UI.messagebox "Total Surface Area = " + Sketchup.format_area(sa) } end end file_loaded((__FILE__)) end -
thanks sdmitch it works great!
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better đź’—
Register LoginAdvertisement