sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    How to kill all faces in a model?

    Scheduled Pinned Locked Moved SketchUp Discussions
    sketchup
    5 Posts 4 Posters 250 Views 4 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.
    • chippwaltersC Offline
      chippwalters
      last edited by

      Or conversely, only select the edges? Thought there might be a plugin for this, but couldn't find one. TIA 😄

      Currently working with Cross-Reality technologies

      1 Reply Last reply Reply Quote 0
      • mitcorbM Offline
        mitcorb
        last edited by

        ThomThom's Selection Tools? Find it in the Plugins Index above.

        I take the slow, deliberate approach in my aimless wandering.

        1 Reply Last reply Reply Quote 0
        • BepB Offline
          Bep
          last edited by

          Go to Vieuw ,edge style.
          Un-tick edges.
          Select all. (Ctl A)
          Press delete ,
          Go back to Vieuw ,edge style
          Tick edges

          Ready !

          Bep

          "History is written by the winners"

          1 Reply Last reply Reply Quote 0
          • chippwaltersC Offline
            chippwalters
            last edited by

            That's what I love about this place...post a message at 6:30 AM Sunday morning, and there's two answers waiting in short time! Thanks guys 😄
            Here's a couple images of an Aquarium Hood I'm building in SketchUp and will be printing out on Ponoko 3D printing and laser cut aluminum. These are the SketchUp models for them.

            http://dl.dropbox.com/u/3788438/Aquarium/PanoramaProFixture03.230.jpg

            http://dl.dropbox.com/u/3788438/Aquarium/PanoramaProFixture03.234.jpg

            Currently working with Cross-Reality technologies

            1 Reply Last reply Reply Quote 0
            • TIGT Offline
              TIG Moderator
              last edited by

              These are some 'one-liners' that manipulate selections etc - Copy+Paste into the Ruby Console + <enter>
              To select just Faces and Edges in the active context

              m=Sketchup.active_model;s=m.selection;s.clear;m.active_entities.each{|e|s.add(e)if e.class==Sketchup;;Face or e.class==Sketchup;;Edge}
              

              To select just all Faces in the active context

              m=Sketchup.active_model;s=m.selection;s.clear;m.active_entities.each{|e|s.add(e)if e.class==Sketchup;;Face}
              

              To select just all Edges in the active context

              m=Sketchup.active_model;s=m.selection;s.clear;m.active_entities.each{|e|s.add(e)if e.class==Sketchup;;Edge}
              

              To select just the Faces and Edges in the current selection

              m=Sketchup.active_model;s=m.selection;s.each{|e|s.remove(e)if e.class!=Sketchup;;Face and e.class!=Sketchup;;Edge}
              

              To select just the Edges in the current selection

              m=Sketchup.active_model;s=m.selection;s.each{|e|s.remove(e)if e.class!=Sketchup;;Edge}
              

              To select just the Faces in the current selection

              m=Sketchup.active_model;s=m.selection;s.each{|e|s.remove(e)if e.class!=Sketchup;;Face}
              

              You can expand this idea to quickly select/deselect all manner of things 🤓

              TIG

              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