sketchucation logo sketchucation
    • Login
    1. Home
    2. GWD
    3. Posts
    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!
    🫛 Lightbeans Update | Metallic and Roughness auto-applied in SketchUp 2025+ Download
    G
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 21
    • Posts 90
    • Groups 2

    Posts

    Recent Best Controversial
    • RE: [plugin] realSection v0.6 Béta (Updated 9/8/2014)

      @unclex said:

      Can't Choose Materials...
      [attachment=0:8p34gdfc]<!-- ia0 -->webqq_app.jpg<!-- ia0 -->[/attachment:8p34gdfc]

      Did you use the demo file?
      The name of the materials that you will use for the section need to start with '_' like '_concrete'
      The materials are the standard SketchUp materials that are active in the model.

      I see you work with SU 7, at this moment realSection won't work with v7. I hope I can fix the problem with SU 7 very soon.

      posted in Plugins
      G
      GWD
    • RE: [plugin] realSection v0.6 Béta (Updated 9/8/2014)

      @unknownuser said:

      But i didn't test it on v7.

      I just did a test on v7 and it give some errors. I try to fix this errors.

      posted in Plugins
      G
      GWD
    • RE: [plugin] realSection v0.6 Béta (Updated 9/8/2014)

      @didier bur said:

      Hi,
      Can't wait to try it out, looks amazing (and useful !) 🎉

      Only works with SU8, right ? (because it applies to solids only)

      Didier, it should work also on v7. I don't use any of the solid functions. But i didn't test it on v7.

      posted in Plugins
      G
      GWD
    • RE: [plugin] realSection v0.6 Béta (Updated 9/8/2014)

      @didier bur said:

      Hi,
      Can't wait to try it out, looks amazing (and useful !) 🎉

      It's very useful. We use it already for about 6 months at our office.

      posted in Plugins
      G
      GWD
    • [plugin] realSection v0.6 Béta (Updated 9/8/2014)

      Do you want to create real sections with different materials through your SketchUp models like this?
      section created by realSection
      Use the new realSection plugin!

      For installation:
      unzip the files in your plugin directory

      In the UserGuide you can find a brief explanation how to use realSection, you also can find a little movie that shows how realSection works http://www.youtube.com/watch?v=Z31yMxiYzdM
      In the the realSectionDemo.skp you find good architectural sectionmaterials that you can use for making your realSections

      If you like realSection, please take a look at Skalp for Sketchup. We made realSection into a commercial plugin:
      http://sketchucation.com/forums/viewtopic.php?f=323%26amp;t=58685%26amp;p=534124#p534124

      posted in Plugins
      G
      GWD
    • RE: [Plugin] fixSolid v1.7 - updated 20/10/2012

      @thomthom said:

      Sorry - I made a typo. It's Sketchup - not SketchUp - the thing is case sensitive.

      Thanks!

      posted in Plugins
      G
      GWD
    • RE: [Plugin] fixSolid v1.7 - updated 20/10/2012

      @thomthom said:

      1. e.typename == "Edge" - .typename is very slow because you do string comparisons. Instead, compare it's class: e.is_a?( SketchUp::Edge )

      What kind of error and what did you switch to?

      As for modules:
      http://ruby-doc.org/docs/ProgrammingRuby/html/tut_modules.html
      http://forums.sketchucation.com/viewtopic.php?f=180&t=12423#p89313

      Many other useful links in this sticky at the Developers section:
      http://forums.sketchucation.com/viewtopic.php?f=180&t=10142

      ThomThom,

      The module works, but when I recplace the .typename with the .is_a? I get the following error:

      Error: #<NameError: uninitialized constant FixSolids::SketchUp>
      (eval):373
      (eval):318:in `call'
      (eval):318

      regards,

      Guy
      [mod=:2660fdfj]%(#FF0040)[**NOTE:
      A newer version [posted under the OP's new login] is available here...**]
      http://sketchucation.com/forums/viewtopic.php?p=436001#p436001
      TIG[/mod:2660fdfj]


      v1.5 NOTE: newer versions available...

      posted in Plugins
      G
      GWD
    • RE: [Plugin] fixSolid v1.7 - updated 20/10/2012

      @thomthom said:

      Nice plugin. 👍

      Got a couple of notes:

      1. It's advisable to wrap your plugin into a module and use module variables instead of global variables - this ensures there will be no conflict with other plugins.

      2. Detecting edges between co-planar faces: You are using this: if faces[0].normal == faces[1].normal then
        I used that for CleanUp, but I ran into issues where it's either erase edges between non-coplanar faces or leave some edges that should have been erased in some cases. As it turns out, the correct way - according to the Googler I spoke to - is to take all the vertices of the two faces you compare and check if they all lie on the same plane.

      3. e.typename == "Edge" - .typename is very slow because you do string comparisons. Instead, compare it's class: e.is_a?( SketchUp::Edge )

      ThomThom,

      1. How can i wrap my plugin in a module?
      2. OK -> v1.4
      3. I tried to switch .typename == "Edge" but then I get errors, i also can't find info about the .is_a? function?

      regards,

      Guy

      posted in Plugins
      G
      GWD
    • RE: [Plugin] fixSolid v1.7 - updated 20/10/2012

      @thomthom said:

      @pherim said:

      That's because solids had not been included in SU 7 and are only available since SU 8.

      Should be able to work anyway. There is not difference in the geometry, it's just that SU8 knows how to recognize solids.

      The plugin works only on SU 8, because the function i use the check if it's a solid is a new function in v8.

      posted in Plugins
      G
      GWD
    • RE: [Plugin] Solid Inspector

      @driven said:

      @thomthom said:

      I avoided using material as I didn't want to clutter people's models.
      fair point, but what about using a 'style' set,that's purged when your done?

      @thomthom said:

      Section planes....(edit) I don't think one can even activate them via Ruby. 😞
      it seems to me that the api lets you, but I'm no coder...

      @thomthom said:

      It should be highlighting the edges though, while the tool is active. you're not seeing that?
      sorry, it is highlighting the multi-face edges, it's the enclosed/internal (to volume) edges I was wondering about

      @thomthom said:

      (I want to make a UI for that.)
      I'm just airing ideas 'for that', I've tested/used all the pre-existing repair-aid scripts (TIG's,VW,CadSpan,etc.) and currently use bits from each, in a rather untidy workflow.

      we stop for Xmas next week and I'll try and organise my thoughts a bit better,

      I like what you've done with this so far...

      john

      John, did you already test my new fixSolid? http://forums.sketchucation.com/viewtopic.php?f=323&t=33471

      Guy

      posted in Plugins
      G
      GWD
    • RE: [Plugin] fixSolid v1.7 - updated 20/10/2012

      No feedback?

      posted in Plugins
      G
      GWD
    • RE: [Plugin] Solid Inspector

      This Plugin try to fix problems with groups that suppose to be solids but don't show up like a solid in SU.

      fixSolid fix the following problems:
      * remove single edges
      * remove separate faces
      * remove edges between coplanar faces
      * remove innerfaces
      * remove all edges with only 1 face connected (RISKY FIX)

      Usage: 1. Select solid
      2. Right-Click Context-Menu. If the solid is broken the option 'FIX SOLID'
      is present. If the option isn't present there are no problems with
      the solid.
      3. Select 'FIX SOLID'
      4. You get the option to do a risky fix. If you choose a risky fix
      it is possible that a part of the solid wil be deleted. This action can
      be undone with the normal SU undo function. The risky fix try to fix
      all problems, the normal fix only fixes problem with no risk.

      Download from: http://forums.sketchucation.com/viewtopic.php?f=323&t=33471

      posted in Plugins
      G
      GWD
    • [Plugin] fixSolid v1.7 - updated 20/10/2012

      This Plugin try to fix problems with groups that suppose to be solids but don't show up like a solid in SU.

      fixSolid fix the following problems:
      * heal missing faces
      * remove single edges
      * remove separate faces
      * remove edges between coplanar faces
      * remove innerfaces
      * remove all edges with only 1 face connected (RISKY FIX)

      fixSolid.JPG

      Usage:

      1. Select solid
      2. Right-Click Context-Menu. If the solid is broken the option 'FIX SOLID' is present. If the option isn't present there are no problems with he solid.
      3. Select 'FIX SOLID'
      4. You can set two options:
      • Risky fix: if you choose a risky fix it's possible that a part of the solid wil be deleted. This action can be undone with the normal SU undo function. The risky fix try to fix all problems, the normal fix only fixes problems with no risk.
      • Fix coplanar faces: If you choose no, the edges between coplanar will not be removed.

      [mod=:3vz6630k]%(#FF0040)[**NOTE:
      A newer version [posted under the OP's new login] is available here...**]
      http://sketchucation.com/forums/viewtopic.php?p=436001#p436001
      TIG[/mod:3vz6630k]


      v1.5 NOTE: later versions are now available...

      posted in Plugins
      G
      GWD
    • New renderenige for SketchUp!!!!!

      I just discoverd a new renderenige for SketchUp render[in] http://www.renderin.com
      Very fast, very easy and very nice pictures. And no it isn't a vray or maxwell but it great for everyone who's looking for a good picture with only pushing one button.

      The uploaded picture i made just adding some reflection settings and hit the render button. Only 5 minutes later the picture was ready!!!!!

      Also the realtime preview is fantastic!!!!


      badkamer_resize.jpg

      posted in Extensions & Applications Discussions extensions
      G
      GWD
    • Scene Transition

      Where can I find the Scene Transitions setting in Ruby?

      posted in Developers' Forum
      G
      GWD
    • RE: [Plugin] Mirror

      TIG,

      Thanks very much for the outline closer!!!!!! I can use this code in some of mine scripts.

      regards,

      Guy

      posted in Plugins
      G
      GWD
    • RE: SU 8 free download

      Thanks, this was the link i was looking for!

      posted in SketchUp Discussions
      G
      GWD
    • RE: SU 8 free download

      I'm sorry simon but this way i become SU7, i think it something with my country because for the download i always get the dutch site which only has SU7 to download. I can switch to the englisch site for downloaden 8 pro, but for the free it jumps back to the dutch website 😞(((

      regards,

      Guy

      posted in SketchUp Discussions
      G
      GWD
    • SU 8 free download

      I need urgent a link to the SU8 free or SU8 viewer. I work with SU8 pro and want to give my model to the client for viewing. But everytime when i try to download SU8 free the site jumps to a dutch download page for SU7.1.

      regards,

      Guy

      posted in SketchUp Discussions sketchup
      G
      GWD
    • Solids subtract / trim

      Is there an option or a workaround that when you subtract or trim two solids the results keep its original material instead the combined material from the original and the subtracted?

      regards,

      Guy

      posted in SketchUp Discussions sketchup
      G
      GWD
    • 1
    • 2
    • 3
    • 4
    • 5
    • 4 / 5