🛣️ Road Profile Builder | Generate roads, curbs and pavements easily Download
  • [REQ] Lock texture coordinates

    28
    0 Votes
    28 Posts
    4k Views
    GaieusG
    Well, it's not apparent until you encounter a certain case...
  • [Plugin] SCF Search v.1.0 (June 11, 2009)

    3
    0 Votes
    3 Posts
    6k Views
    B
    The plugin can be found in the window menu; it's not called found. Look for 'Sketchucation Search' in the Window menu. First post has been updated, sorry for the confusion.
  • [REQ] Curvespace for bezierspline.rb

    7
    0 Votes
    7 Posts
    1k Views
    PixeroP
    The thing is that I have found a way to control animation in SU and if I could specify a min length, a max length and one of the interpolations in my post above (when linear only one length of cause)when converting to polyline divider everything would work. Of cause a curve based alternative could also be handy. This would mean a huge step forwards for animation in SU. I'll try to make a tutorial if/when I have this last piece of the puzzle. Here's a link to some more interpolations: http://library.sfug.ch/trac/browser/trunk/branches/1.x/doc/as3/benchmarks/tweener/caurina/transitions/Equations.as?rev=219
  • [req]Model Scrambler

    48
    0 Votes
    48 Posts
    17k Views
    thomthomT
    @remus said: Hmm, I wonder if it would be possible to use transformations that don't destroy the model, but just make it hard/annoying to edit thinking smilie I think the hard thing would be finding a suitable transformation that can't be fixed using another ruby. Instead of rotating individual vertices, rotate whole connected geometry. Throwing everything slightly off scale is annoying as hell. Whenever I get a model where a model where everything is like that (usually based of some AutoCAD drawing) it makes me curl up under my desk and rock back and forth sucking my thumb.
  • [REQ] Reverse curve script

    11
    0 Votes
    11 Posts
    2k Views
    PixeroP
    Thanks, it works fine now. I have attached the script if anyone else needs it. Now off to fix those troublesome animation curves... reverseCurve.rb
  • [REQ / IDEA] For a new section tool

    3
    0 Votes
    3 Posts
    632 Views
    O
    will be wonderful!!!
  • [REQ] clean up multiple topos from earth

    8
    0 Votes
    8 Posts
    2k Views
    JClementsJ
    Chris, thanks for the video: I tried watching and I got up to the point where you were trimming with the extruded cubes, then bamm the PC totally powered off. Not sure why, but it been happening to me lately with large (long) videos. (anyone a clue why?) I'll try watching again at work. The method you used which I did watch is similar to what I have tried. I just wish there was an alternative way to automatically isolate and delete the overlaps with out re-triangulation.
  • [REQ] fill area with instances of components

    3
    0 Votes
    3 Posts
    1k Views
    P
    Thank you for the quick reply. MatrixProximity looks great, seems to be doing what I need. I'll play around with it later.
  • [Plugin] Edit Image Material v2.1 UPDATE! (ArchTools)

    4
    0 Votes
    4 Posts
    11k Views
    GaieusG
    There's no difference in the pro and free version in this.
  • [REQ] Make custom toolbar script

    9
    0 Votes
    9 Posts
    1k Views
    A
    I copy here the comment inside of Jim's example toolbars: Example Toolbar File A toolbar file is simply a text file containing a list of commands you want to appear on your toolbar. The # symbol denotes a comment and is skipped by the toolbar maker. The Toolbar filename must end in .txt. The name of the .txt file is used as the Toolbar name. Toolbar separators can be created using 3 dashes (---) on a line by themselves. You can create any reasonable number of custom toolbars, just create another .txt file in the same folder as this one. All available toolbars will be loaded. Commands are not case sensitive, but capitals can be used to help readability. For example, the following commands are identical: fileNew filenew FileNew Filenew FILENEW In the toolbar folder, there's a html file that contains the commands that you can insert in your custom toolbar. When you search a bit, you find that they refer to ruby scripts (for each single command) in the files/sketchup/commands subfolder. So I dublicated such a ruby, edited it and put the icon in the images folder. For example freeScale.rb: cmd = UI::Command.new("FreeScale") { FreeScale.launch false, true } cmd.small_icon = "../images/freeScale_sm.png" cmd.large_icon = "../images/freeScale_lg.png" cmd.tooltip = "Scale with orientation of scaling box" cmd.status_bar_text = "Scale with orientation of scaling box" cmd.menu_text = "Scale with orientation of scaling box" cmd.set_validation_proc { tool_validation_proc"FreeScale.launch") } @cmd = cmd The bold phrases need to be edited to make it work. The most difficult thing is to find how the function of a plugin is called. I opened the plugins, searched for 'UI.menu' which creates the toolbar buttons of the original plugin. I don't know what the underlined phrase is for.
  • [Request] Is there a plugin to save/set my icons & palletes

    5
    0 Votes
    5 Posts
    1k Views
    TIGT
    In Ruby UI.openURL(your_path_to_batch_file) runs a Windows "batch file" (.bat, .cmd etc or compiled stuff like kix or VB)... I'm sure there'll be equivalent UnixShell or AppleScript possibilities for the Mac - I think that, unlike PCs, Macs get a full install of Ruby, so perhaps for Mac this could even be implemented in Ruby outside of SUp ? ... However, there is one big problem with this... IF the batch file you run changes the SUp registry settings during a Sup session it's pretty much pointless - most of these values were read when you started SUp and will be rewritten when you exit SUp - therefore most of these changes you have reset within SUp wouldn't make any difference - they be ignored during the current SUp session and then lost as you exit SUp when it rewrites things. To reset the registry values you need SUp NOT to be open... BUT Ruby needs SUp open to carry on working. However, it could be made to work this way... A 'SaveToolbarsSettings' Ruby script would run suitable batch files to make the required files with the info extracted from the registry (or ini file for Mac ?) - all as outlined by CadFather - you could run this script at any time to make a backup of the current 'good' setup... A 'ResetToolbars' Ruby script would first save the model's path details to a temp-file - note: that if it were an 'unsaved' model you would be prompted to save if - if you cancelled the model would be discarded and the temp-file entry set to "". The script would then run a batch file. This batch file would wait (looping) while SUp was open (using plist etc ?). Assuming you didn't initially have an 'unsaved' model, then the script would save the model. The script would then close SUp (model.close_active ? or another 'process-killer' batch file ?). The batch file would then notice that SUp was no longer running and so it would re-start - it would rewrite the registry values for the saved toolbar settings - again, all as outlined by CadFather. Finally the batch file would reopen the model using the temp-file info that was saved at the start - note: if it was an 'unsaved' model then SUp would simply opene from the default template, with a new 'unsaved' model file. SUp should now continue to reopen with the toolbars setup as they were previously saved from a 'good version'... This way could effectively automate saving and resetting of the toolbar setup - accessed within SUp itself, initiated with Ruby, running external commands - however the coding needed extra-ruby for PC and/or Mac is not that easy - but I'm sure it's do-able... I don't have the time (or the patience !) to look at this right now... but perhaps CadFather or someone else could automate this furthe, using these ideas ?
  • [REQ] HTML Viewer for SketchUp

    20
    0 Votes
    20 Posts
    6k Views
    GaieusG
    @omuljungley said: I understood that the first time Gaieus, but there could be some other people who might have not. I didn't try to offend you in any way, it is just that when you advice someone to buy a software it is a paradox to say in the same sentence that you need to get it for free or "gratis". Others who see your post will also want to get it for free and if they can't get it from Abe they will get it from somewhere else. Well, that may also be a valid reasoning but you may never know what's behind such a "present" from a developer. For your information, I have received a free upgrade from SU 6 (Pro) to SU 7 (Pro) as well. In fact, although by accident, I ended up with two pro licenses of SU 7 (one of which I don't use of course because it's not what the aim of this free upgrade was). Now would this mean that everyone should be entitled to expect the same from Google? Or I have licenses of three commercial plugins for free for different reasons (beta testing or translating the English version to my mother tongue etc.). But seriously, let's put this aside because I'm also sure your intention was not "piracy" and I can imagine that sometimes one needs to try out something until he can make sure it will work. This is also why "trial versions" (and optimally "fully featured" ones) should always be available. So again, I'm glad it worked for you and indeed, Hypercosm is a great tool (and the Pro version is quite powerful, too). Unfortunately it's rather undervalued and not very well known by SU users although since they released the Mac version of the viewer, it has worked on all major platforms and browsers which you cannot tell about a lot of other applications of similar purposes.
  • Rigging ruby [req]

    20
    0 Votes
    20 Posts
    4k Views
    B
    The idea of having geometry sticking to groups and components crossed my mind once a long time ago, as I guess it has to many other people as well. I wonder what possibilities it would create for sketchy-physics if it worked ... Or maybe someone could make a script that creates a group like FFD, but you use tools to draw a 'skeleton' in it, and the script methods .distance and .distance_to_line to find out the closest point in the skeleton from the mesh, and move it based on the movement of the skeleton, perhaps based on the distance to that closest point aswell. Who knows if that would be possible or not though.
  • New script: Projection toolbar update

    25
    0 Votes
    25 Posts
    5k Views
    pilouP
    @Tig Yes that is very nearest From an old french TV Serial "5 dernières minutes" (Last five minutes) (like Colombo) And the gimmik was at the end "Mais bon sang, c'est bien sûr" when the Police superintendants Bourrel and his loyal Cabrol has found the solution of the crime! (It's Cabrol who said the gimmick [image: BOURREL.jpg] remake in comics by Gotlib : Bougret & Chabrol [image: RAB-Bougret-Charolles-bye.jpg] And for my little suggestion above no idea?
  • [REQ] New Rotate Tool = Rota-Scale?

    10
    0 Votes
    10 Posts
    2k Views
    pilouP
    If you take a look to the "Edit Frame" of Moi, you will have dreams for the rest of the year
  • [Request} Search Layer Names and Object Names

    2
    0 Votes
    2 Posts
    513 Views
    R
    Without doing some investigation into the available Layer methods, I'll go out on a limb and say it's possible. Just need to find time
  • [request] Plugin UVTools for cube

    4
    0 Votes
    4 Posts
    906 Views
    thomthomT
    http://www.sketchucation.com/forums/scf/viewtopic.php?f=180&t=18992
  • [Request] Plugin needed- origin of radius

    15
    0 Votes
    15 Posts
    3k Views
    Chris FullmerC
    ok, I think I got a working version of it up and running. See here: http://www.sketchucation.com/forums/scf/viewtopic.php?f=180&t=18963 Chris
  • [Request] Dimension and Leader Text - Toggle Visibility

    5
    0 Votes
    5 Posts
    882 Views
    JClementsJ
    TIG: I did a real quick test and the data mining functions seems to work great. I'll be using it extensively during the next week or two. If anything comes up I will post here. Thanks again! "You're a gentlemen and a scholar." ... W.C. Fields
  • [Request] Force new face Front or Back ?

    8
    0 Votes
    8 Posts
    1k Views
    JClementsJ
    Yup, I admit I am lazy, just don't want it to happen at all. I do a lot plan and section tracing. They represent various interconnected concrete channels, tanks, flumes, wells, and the like. Not like a building where you have fixed floor heights, but a lot of intermediate elevations, with "zig-zagging", sloping channels. Tracing is far better faster than redrawing from a dimensioned plan or section (if you don't have to do a lot of cleanup) and is less prone to operator (me) error. :0

Advertisement