sketchucation logo sketchucation
    • Login
    1. Home
    2. renderiza
    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!
    โš ๏ธ Important | Libfredo 15.6b introduces important bugfixes for Fredo's Extensions Update
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 98
    • Posts 783
    • Groups 2

    Posts

    Recent Best Controversial
    • RE: [Plugin] LoopLab v1.0.0

      @andybot said:

      I'm curious how this differs from ThomThom's Quadface tools. There are loop selections in there - how does yours compare?

      Just verified ThomThom's Quadface tools and it does have a loop feature just like mine. Not only that but quite frankly it is better since it can select multiple loops while mine currently can't.

      There is so many plugins that I can't keep track on all of them so this is bound to happen here and there. I am glad still I made this without knowing because I learned few new things.

      Cheers!

      Note: I wonder if we used the same method to achieve this! ๐Ÿค“

      posted in Plugins
      renderizaR
      renderiza
    • LoopLab Help

      Hi, the following code is part of a plugin called LoopLab and I am seeking help in resolving an issue. Right now the tool can't select multiple loops and was wondering if anyone has an idea on how to solve this issue. Thanks in advance!

      model = Sketchup.active_model
      sel = model.selection
      edges = sel.grep(Sketchup;;Edge)
      #
      use = edges.last
      rerun = edges.last
      #
      run = true
      stp1 = false
      stp2 = false
      #
      skip = true
      #
      model.start_operation('LoopLab')
        #
        begin
        #
        edge = use
        faces = edge.faces
        v1 = edge.start
        v2 = edge.end
        v1_edges = v1.edges
        v2_edges = v2.edges
        #
        break if v1_edges.length > 4 || v2_edges.length > 4
        #
        v1_edges.to_a.each { |ne|
          if not ne.used_by? faces[0] and not ne.used_by? faces[1] and not sel.include?(ne)
            use = ne
            sel.add ne
            stp1 = false
            break 
          else
            stp1 = true
          end
        }
        #
        if skip == true
          skip = false
          next
        end
        #
        v2_edges.to_a.each { |ne|
          if not ne.used_by? faces[0] and not ne.used_by? faces[1] and not sel.include?(ne)
            use = ne  
            sel.add ne
            stp2 = false
            break
          else
            stp2 = true
          end
        }
        #
        if stp1 and stp2
          run = false
        end
        #
      end while run
      #
      #
      #
      run = true
      stp1 = false
      stp2 = false
      skip = true
      #
      begin
        #
        edge = rerun
        faces = edge.faces
        v1 = edge.start
        v2 = edge.end
        v1_edges = v1.edges
        v2_edges = v2.edges
        #
        break if v1_edges.length > 4 || v2_edges.length > 4
        #
        v1_edges.to_a.each { |ne|
          if not ne.used_by? faces[0] and not ne.used_by? faces[1] and not sel.include?(ne)
            rerun = ne
            sel.add ne
            stp1 = false
            break
          else
            stp1 = true
          end
        }
        #
        if skip == true
          skip = false
          next
        end
        #
        v2_edges.to_a.each { |ne|
          if not ne.used_by? faces[0] and not ne.used_by? faces[1] and not sel.include?(ne)
            rerun = ne
            sel.add ne
            stp2 = false
            break
          else
            stp2 = true
          end
        }
        #
        if stp1 and stp2
          run = false
        end
        #
        end while run
        #
      model.commit_operation
      #
      Sketchup.send_action('selectSelectionTool;')
      
      posted in Developers' Forum
      renderizaR
      renderiza
    • RE: [Plugin] LoopLab v1.0.0

      http://s22.postimg.org/anepz70xd/example.png

      Plugin Rules:

      • Select an edge before using tool
      • Plugin only works well if geometry is made out of quads.
      • Currently you can't select another loop if one is already selected. (Will see if with the help of other developers this can be solved)
      posted in Plugins
      renderizaR
      renderiza
    • [Plugin] LoopLab v1.0.0

      [pre:pjpbhnto]Authors:: Renderiza
      Plugin Name:: LoopLab
      Version:: 1.0.0
      Date:: 11/8/2013
      Cost:: Free[/pre:pjpbhnto]

      LoopLab

      Select edges that are part of a loop.

      http://s23.postimg.org/cngvdbuh7/215.png

      Available at
      sketchUcation
      pluginStore
      click here

      %(#909090)[**Menu: Plugins > Renderiza Tools > LoopLab

      Context Menu: Right Click > LoopLab

      Add Keyboard Shortcut: Window > Preference > Shortcuts > Function = Edit/Item/LoopLab > Add Shortcut**]

      posted in Plugins
      renderizaR
      renderiza
    • RE: [Extension][$] iSelect

      @erikb said:

      But auto-install with sketchUp plugin manager (I even tried it twice) doesn't install it ?
      Am I missing something, or is something missing ๐Ÿ˜‰ ?

      Have you verified that your plugin folder's permission have full rights?

      Just in case try auto-installing it from Extension Warehouse to see if that works.

      posted in Plugins
      renderizaR
      renderiza
    • RE: NPR Barn Rendering

      Wow I love the style! ๐Ÿ˜ฎ

      The colors bring perfect contrast to the scene and gives a happy vibe. โ˜€

      You have set the bar sir thanks for sharing! ๐Ÿ‘

      posted in Gallery
      renderizaR
      renderiza
    • RE: [Extension][$] iSelect

      [pre:12acadvw]Authors:: Renderiza
      Plugin Name:: iSelect
      Version:: 1.0.1
      Date:: 11/6/2013
      Cost:: Free[/pre:12acadvw]
      iSelect v1.0.1 is now available for download.

      http://jroot.sketchucation.com/pluginrepo/image/RND_iSelect_v1.0.0.png

      %(#909090)[What is new:

      • Group & Component selection is fixed
      • Context Menu Added (right click > iSelect)
      • Add keyboard shortcut

      How to set keyboard shortcut:
      Window > Preference > Shortcuts > Function = Edit/Item/iSelect > Add Shortcut

      Thanks for Feedback! ๐Ÿ‘]

      posted in Plugins
      renderizaR
      renderiza
    • RE: [Extension][$] iSelect

      Finished fixing the component & group situation and will start on adding the context menu next. Another plus to adding context menu is that it will show up on keyboard shortcut list. ๐Ÿ˜‰

      Thanks for feedback! ๐Ÿ‘

      posted in Plugins
      renderizaR
      renderiza
    • RE: [Plugin] Select faces by orientation

      Thanks for the plugin! ๐Ÿ‘

      It would be nice to have toolbar buttons as well.

      posted in Plugins
      renderizaR
      renderiza
    • RE: [Extension][$] iSelect

      Glad you found it useful. ๐Ÿ˜‰

      posted in Plugins
      renderizaR
      renderiza
    • RE: [Plugin] FaceSplit v1.0.3

      @guanjin said:

      Why not improve it in XP system browser 8 at work, your plug-in I do not work here

      Have not yet started to make compatible version but it is on my to do list. ๐Ÿ‘

      @jiminy-billy-bob said:

      Why support a 12 years old OS and an outdated browser ?
      Sometimes it's better and easier for everyone to upgrade and follow technology.

      That would be very helpful indeed. ๐Ÿ˜†

      Still though will be nice to support XP user. ๐Ÿ˜‰

      posted in Plugins
      renderizaR
      renderiza
    • RE: [Extension][$] iSelect

      Uploaded a short video explaining what the plugin is about. ๐Ÿ‘

      posted in Plugins
      renderizaR
      renderiza
    • [Extension][$] iSelect

      Welcome, SketchUp Heroes!

      News: iSelect is now on Extension Warehouse with a free 7-day trialโ€ฆ

      https://sketchucation.com/forums/download/file.php?id=151707
      โžœ Try iSelect for Free!

      iSelect - Select what you see


      When you click & drag to make a selection sometimes unwanted entities get selected as well and this plugin will help you filter them out by deselecting anything the camera is not viewing.


      https://sketchucation.com/forums/download/file.php?id=151708

      โžœ Buy on Sellfy

      https://sketchucation.com/forums/download/file.php?id=151707

      โžœ Buy on Extension Warehouse

      https://s20.postimg.org/f87v2o6st/300-i_Select-anim-2.gif


      More Extensions by RafaelRiveraโ€ฆ


      ColorHex โ— Grabby โ— CompoScene โ— iSelect


      posted in Plugins
      renderizaR
      renderiza
    • RE: [Request] Select only horizontal and vertical faces

      @rich o brien said:

      Link Preview Image
      SketchUp Plugins | PluginStore | SketchUcation

      SketchUp Plugin and Extension Store by SketchUcation provides free downloads of hundreds of SketchUp extensions and plugins

      favicon

      (sketchucation.com)

      Great plugin that does what he wants and then some! ๐Ÿ‘

      posted in Plugins
      renderizaR
      renderiza
    • RE: [Request] Select only horizontal and vertical faces

      Here is a code example...

      model = Sketchup.active_model
      ents = model.active_entities
      sel = model.selection
      
      faces = sel.grep(Sketchup;;Face)
      edges = sel.grep(Sketchup;;Edge)
      
      faces.each do |face|
      
        if not face.normal.x == 1 || face.normal.y == 1 || face.normal.z == 1 || face.normal.x == -1 || face.normal.y == -1 || face.normal.z == -1
        
          sel.remove face
        
        end
        
        sel.remove edges
      
      end
      

      Note:forgot to add negative normal...updated the code above. ๐Ÿ˜›

      posted in Plugins
      renderizaR
      renderiza
    • RE: [Request] Select only horizontal and vertical faces

      We all posted replies very quickly ๐Ÿ˜ฎ ...I love sketchUcation! ๐Ÿคฃ

      posted in Plugins
      renderizaR
      renderiza
    • RE: [REQ] Detail Extractor

      If you have SketchUp Pro there is Solid Tools which has a feature called the Intersect tool.

      Usage: Tools > Solid Tools > Intersect

      posted in Plugins
      renderizaR
      renderiza
    • RE: [Plugin] FaceSplit v1.0.3

      [pre:1qax22vv]Authors:: Anar | Dan Rathbun | Pilou | Renderiza | TIG
      Plugin Name:: FaceSplit
      Version:: 1.0.3
      Date:: 11/4/2013
      Cost:: Free[/pre:1qax22vv]
      FaceSplit v1.0.3 is now available for download.

      This version improves the capability of splitting a face with inner loop. This will only work with one inner loop and not more though.

      posted in Plugins
      renderizaR
      renderiza
    • RE: Plugin Store, Plugins and Premium Membership...

      @jql said:

      No code should be wasted, that's a plugin you should release anyway and probably, with the community feedback, there can be some functions to be added later. You respond very well to suggestions and your plugins gain a lot because of that, without ever loosing their core spirit.

      I think there are many suggestions on split face that are very good (I specially like the one from pixero), and maybe this new "split donut" could be added to splitface as an option.

      Well you read my mind because the plugin I had in mind that could use this code was FaceSplit! ๐Ÿ˜ฎ

      Already added the new feature to version 1.0.3 which solves the problem it was having with convex faces. Now you can get nice result if there is one inner loop inside face like a window for example. There is still progress too be made because if there is more than one inner loops the face will not be split. This problem also happens with TIG's plugin and it will not be easy to solve.

      Pixero's suggestion is very good indeed! Hope to give that one a go very soon. ๐Ÿ‘

      @jpalm32 said:

      Why not raise the premium price a bit and offer 2 or 3 paid plugins.
      Every renewal gets one more.
      Like a coupon.
      Split that with the developers.
      I'm for anything that helps.

      That can be a good idea but SketchUcation will need the support of developers for that to work out.

      posted in Plugins
      renderizaR
      renderiza
    • RE: Plugin Store, Plugins and Premium Membership...

      Oops! ๐Ÿ˜ณ

      Before publishing the plugin for the experiment I mentioned on the post above, decided to investigate if the idea was already created...Turns out that TIG already has a plugin that accomplished what I had in mind.

      When I said lots of mistake were going to be made I didn't realize it was going to be this quickly.๐Ÿคฃ
      But nevertheless I am glad I found it before taking action because that would of been little more embarrassing.

      If you were wondering what the idea was here is TIG's plugin Split Donut.

      This means I will have to postpone the experiment until I find another idea to work with.

      Cheers!

      Note: Maybe the code I created can still be useful because it can solve some issues I have with other plugins of mine. ๐Ÿ˜’

      posted in Plugins
      renderizaR
      renderiza
    • 1 / 1