⚠️ Important | Libfredo 15.6b introduces important bugfixes for Fredo's Extensions Update
  • Plugins for managing different scales

    9
    0 評價
    9 貼文
    608 瀏覽
    Chris FullmerC
    If you're just trying to scale an object within the model, like a tower, you use the scale tool. S is the shortcut key. And if your inserting something from the 3d warehouse, its not an import really. I was imagining you were importing an autocad dwg file or something. So just use the scale tool. For paper layouts, SketchUp pro comes with a page layout utility called "layout" which does a good job of this. You might try the free pro trial once you get more familiar with the software.
  • Draw line on curved surface

    4
    0 評價
    4 貼文
    790 瀏覽
    M
    Thanks for your help
  • [Plugin] Color by Z (Updated August 27th, 2009)

    54
    0 評價
    54 貼文
    52k 瀏覽
    Y
    hello Chris, My first post on this great site, and many thanks for this very useful script! Another great implementation would be to give as well possibility to have a [highlight=#ffffbf:11vlkwjz]gradient of transparency[/highlight:11vlkwjz] (I am thinking now of cloud generation....)
  • [REQ] Apollonian Circles

    11
    0 評價
    11 貼文
    2k 瀏覽
    F
    Hi TIG, Thanks for the heads up on the sketchy physics. I did install it & but it broke my sketchup, alas!:( I get an error about undefined method 'extend_object' for 'singleton' & it seems to have an issue with additionalfolders.rb because the message is from the additional folders dialouge even though sketchy physics is not installed to the additional folder but the resident plugin folder in the program files (x86) folder. It might probably have to do something with the 64 bit windows I'm running, ...or not. I guess I'll just wait for the update. Oh,well! I don't suppose I could tempt you into whipping up a ruby for circle stacking, could I? I mean I find your tangent tools quite invaluable in my work process, (so thanks for that) and what I was talking about might be closer to circle stacking/tangent tools than Apollonian circles cheers, flyashy
  • [REQ] UV Offset Plugin

    4
    0 評價
    4 貼文
    2k 瀏覽
    bac9-flclB
    thomthom Yeah, your example is absolutely correct! And right, if there is a face with coordinates like these: [7.2, 6.3] [7.8, 6.3] [8.8, 7.9] [9.2, 5.9] Then there is no point to run such a script, and the most logical thing to do would be to abort operation. It would be extremely cool if offending face would be highlighted, but I'm not sure if it's an easy thing to do, since it might be buried inside the component hierarchy and directly selecting it might be impossible. Aerilius Thanks, I will definitely try this, even though the plugin description doesn't look very revelant. But maybe it does what's needed as an unintended side effect, will check.
  • Reducing Google Earth Terrain File Size

    3
    0 評價
    3 貼文
    587 瀏覽
    A
    To reduce the amount of polygons, you need a polygon reducer plugin (Polyreducer 0.1, or Artisan which is by far the best). For terrains, you could also get results with Terrain Reshaper.
  • [Plugin] Export Batch DAE

    29
    0 評價
    29 貼文
    46k 瀏覽
    TIGT
    model.options["PageOptions"]["ShowTransition"] = false might help... OR this entire thing as an example ? <span class="syntaxdefault">def scenes2images</span><span class="syntaxkeyword">()<br /></span><span class="syntaxdefault">  model</span><span class="syntaxkeyword">=</span><span class="syntaxdefault">Sketchup</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">active_model<br />  view</span><span class="syntaxkeyword">=</span><span class="syntaxdefault">model</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">active_view<br />  width</span><span class="syntaxkeyword">=</span><span class="syntaxdefault">view</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">vpwidth</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">to_int<br />  height</span><span class="syntaxkeyword">=</span><span class="syntaxdefault">view</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">vpheight</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">to_int<br /></span><span class="syntaxcomment">### you can change the width/height away from the default if you desire<br /></span><span class="syntaxdefault">  pages</span><span class="syntaxkeyword">=</span><span class="syntaxdefault">model</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">pages<br />  pages_times</span><span class="syntaxkeyword">=[]<br /></span><span class="syntaxdefault">  pages</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">each</span><span class="syntaxkeyword">{|</span><span class="syntaxdefault">page</span><span class="syntaxkeyword">|</span><span class="syntaxdefault">pages_times</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">push</span><span class="syntaxkeyword">([</span><span class="syntaxdefault">page</span><span class="syntaxkeyword">,</span><span class="syntaxdefault">page</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">transition_time</span><span class="syntaxkeyword">])<br /></span><span class="syntaxdefault">    page</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">transition_time</span><span class="syntaxkeyword">=</span><span class="syntaxdefault">0.0 </span><span class="syntaxkeyword">}<br /></span><span class="syntaxcomment">### remembers pages' transition times and sets them all to 0<br /></span><span class="syntaxdefault">  filepath</span><span class="syntaxkeyword">=</span><span class="syntaxdefault">File</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">dirname</span><span class="syntaxkeyword">(</span><span class="syntaxdefault">model</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">path</span><span class="syntaxkeyword">)+</span><span class="syntaxstring">"\\"<br /></span><span class="syntaxdefault">  0</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">upto</span><span class="syntaxkeyword">(</span><span class="syntaxdefault">pages</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">count</span><span class="syntaxkeyword">-</span><span class="syntaxdefault">1</span><span class="syntaxkeyword">)do|</span><span class="syntaxdefault">images</span><span class="syntaxkeyword">|<br /></span><span class="syntaxdefault">    </span><span class="syntaxcomment">### this msgbox pauses and lets each view refresh and the image process...<br /></span><span class="syntaxdefault">    UI</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">messagebox</span><span class="syntaxkeyword">(</span><span class="syntaxstring">"Exporting Image of Scene..."</span><span class="syntaxkeyword">)<br /></span><span class="syntaxdefault">    model</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">active_view</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">write_image</span><span class="syntaxkeyword">(</span><span class="syntaxstring">"#{filepath+pages.selected_page.name}.jpg"</span><span class="syntaxkeyword">,</span><span class="syntaxdefault">width</span><span class="syntaxkeyword">,</span><span class="syntaxdefault">height</span><span class="syntaxkeyword">,</span><span class="syntaxdefault">true</span><span class="syntaxkeyword">)<br /></span><span class="syntaxdefault">    Sketchup</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">send_action</span><span class="syntaxkeyword">(</span><span class="syntaxstring">"pageNext;"</span><span class="syntaxkeyword">)<br /></span><span class="syntaxdefault">  end</span><span class="syntaxcomment">#loop<br />### reset pages' transition times<br /></span><span class="syntaxdefault">  pages_times</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">each</span><span class="syntaxkeyword">{|array|array[</span><span class="syntaxdefault">0</span><span class="syntaxkeyword">].</span><span class="syntaxdefault">transition_time</span><span class="syntaxkeyword">=array[</span><span class="syntaxdefault">1</span><span class="syntaxkeyword">]}<br /></span><span class="syntaxdefault">  UI</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">messagebox</span><span class="syntaxkeyword">(</span><span class="syntaxstring">"Scenes' Image Exporting - Completed."</span><span class="syntaxkeyword">)<br /></span><span class="syntaxdefault">end</span><span class="syntaxcomment">#def<br />&nbsp;</span><span class="syntaxdefault"></span>
  • Can't install sketchup 8 plugin

    2
    0 評價
    2 貼文
    766 瀏覽
    TIGT
    Show us the error dialog. As a guess... You probably don't have sufficient access rights to the Sketchup 'plugins' folder. Ensure that these are FULL [read/write], then retry installing the RBZ file through the Preferences > Extensions > Installer button, or use thomthom's API equivalent 'Simple-Plugins-Installer'... Note that on a MAC the correct plugins folder is the one in the Lib of the root HD - NOT the 'user' equivalent [assuming you let SketchUp install itself in the default folders and didn't mess with it during the app's installation etc]...
  • [Plugin] Sierpinski Tetrahedron

    3
    0 評價
    3 貼文
    5k 瀏覽
    pilouP
    Missed this one! [image: KTfP_trig.jpg] Bravo to RegularPolygon! [image: vzqy_trig1.jpg]
  • Plugin Idea: SuperGuides

    8
    0 評價
    8 貼文
    463 瀏覽
    thomthomT
    @chris fullmer said: Nestednode, how do you orbit around in the model? Do you click on the orbit icon, or do you have a shortcut key to the orbit tool, or do you use some other technique? Just curious, thanks, Like, middle mouse button (scroll wheel) - which IMO is the fastest way to orbit.
  • [Obsolete] TT_Lib (1.2.0) — 31 August 2010

    30
    0 評價
    30 貼文
    42k 瀏覽
    thomthomT
    @cotty said: lunchtime? Rendering Catching up for not being online while I was at Basecamp.
  • [Plugin] SCF PowerToolbar (09.Sep.2010)

    76
    0 評價
    76 貼文
    78k 瀏覽
    A
    Hello¨ First of all, great work! Second, am I the only one getting trouble installing all the SCF bars(power bar, architect, draw tool, selective etc)? They all have their icons in a folder called CD_ICONS, so loading them all in the plugins folder made them overwrite each other. In the end I had to change each folder to CD_ICON1, CD_ICON2, and then change the routing in the orignial rb. file. Am I the only one experiencing this? Third: All my plugin toolbars load at startup except the different SCFs. I have tried twenty times to place them and save the template, but it doesnt work When I manually toggle them on, theyre in the right place, so I guess the template is saved, but the toolbars wont show up without manually enabling them. Any suggestions? Thanks!
  • Does anyone know how to do this?

    13
    0 評價
    13 貼文
    831 瀏覽
    olisheaO
    Pilou I already tried something similar with JPP and greeble, it doesn't quite come out as expected if your mesh isn't exactly right...mixture of tris/quads not very nice. What if you want a different shape too? I used sculpt tool on an offset grid with artisan and got some crazy results I didn't expect!! [image: array_zpscd360c6a.png]
  • Toggle Wireframe

    3
    0 評價
    3 貼文
    325 瀏覽
    R
    Good spot. Thanks it is sorted now. Ross
  • Flight path for LumenRt

    3
    0 評價
    3 貼文
    353 瀏覽
    B
    i think the best is http://www.smustard.com/script/FlightPath2 for only 7$
  • [Plugin] Group PushPull 2DFaces (v0.4) Oct 20, 2010

    22
    0 評價
    22 貼文
    31k 瀏覽
    W
    It's save a lots of time. Thank you so much.
  • Since I Purchased Artisan....(plugin overkill?)

    4
    0 評價
    4 貼文
    529 瀏覽
    S
    U can use a program to monitor your CPU and see if ur overheating it. every CPU is different just look on the net for the right one to compare. I used coretemp and speedfan to check my CPU as i was afraid i was overheating my pc. I'm not a computer expert so i can't really help u more with this.
  • Sweep 2 Rail

    25
    0 評價
    25 貼文
    19k 瀏覽
    Dan RathbunD
    Nice aircraft !
  • OSX mountain Lion - plugins? no worky...

    4
    0 評價
    4 貼文
    404 瀏覽
    Dave RD
    This is exactly what I was telling you in your other post and in response to your private message. I wonder how many times you have to read the same things before you'll get on with it.
  • Help! Randor.rb no longer available?!

    4
    0 評價
    4 貼文
    2k 瀏覽
    I
    Chris, Thank you for your link and script. I gave it a try and it worked well. Thank you!

Advertisement