sketchucation logo sketchucation
    • Login
    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!
    🛣️ Road Profile Builder | Generate roads, curbs and pavements easily Download

    Searching for plugin " surface area of selected components"

    Scheduled Pinned Locked Moved Plugins
    3 Posts 2 Posters 286 Views 2 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • M Offline
      mics_54
      last edited by

      I was wondering if there was a plugin to help calculate total surface areas of all selected entities or components.

      1 Reply Last reply Reply Quote 0
      • sdmitchS Offline
        sdmitch
        last edited by

        @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
        
        

        Nothing is worthless, it can always be used as a bad example.

        http://sdmitch.blogspot.com/

        1 Reply Last reply Reply Quote 0
        • M Offline
          mics_54
          last edited by

          thanks sdmitch it works great!

          1 Reply Last reply Reply Quote 0
          • 1 / 1
          • First post
            Last post
          Buy SketchPlus
          Buy SUbD
          Buy WrapR
          Buy eBook
          Buy Modelur
          Buy Vertex Tools
          Buy SketchCuisine
          Buy FormFonts

          Advertisement