🛣️ Road Profile Builder | Generate roads, curbs and pavements easily Download
  • How can i create my own Toolbar ... ?

    6
    0 Votes
    6 Posts
    1k Views
    H
    this is way above my concentration levels lol ... i just dont understand the language ... thanks anyway
  • Delaunay diagrams

    7
    0 Votes
    7 Posts
    2k Views
    Chris FullmerC
    And if I'm not mistaken, the sandbox tools also use dalauney algorithm to make the TIN, same with the DEM importer (possibly). I had started writing an intersting script that was aimed to work more satisfactorily than the from contours tool. Got started on it and got overwhelmed. But these scripts that create meshes are super fascinating to me. This is something I would love to tackle someday. Just don't count it anytime soon Chris
  • Problem Importing from SU to KT using SU2KT

    10
    0 Votes
    10 Posts
    1k Views
    O
    PROBLEM SOLVED Khai, Actually I had both KT and SU installed in non-native directories. Since nothing that was suggested worked, I reinstalled KT INTO the default directory, reinstalled the SU plug in (it asked me where the new KT installation was) and I tried rendering once again. The export process in SU would start and finish without any messages. KT wouldn't start automatically or load the export. BUT when I open KT manually and open the created xml file, the export would load and would render as expected, using all the light sources specified in SU. In contrast, prior to this fix, the manually opened xml files were just blanks. I suspect the solution was the reinstallation of KT. Not sure if the default directory helped. Either way, thanks to all for helping out!
  • Construction point with z contrainte

    3
    0 Votes
    3 Posts
    525 Views
    pilouP
    I don't know what is a control point, but if you press the Up arrow key, you have constraint on the Z axis If you want draw only vertical lines, you can use the Chris Fullmer plug "3 lines tools" by lenght by elevation line on normal
  • Ruby Script question re soften certain lines only

    6
    0 Votes
    6 Posts
    902 Views
    P
    Shuffled things around a bit by copying other scripts and got the menu item to appear. Not sure how. But when I select the option nothing happens: Soften all vertical lines in a model require 'sketchup.rb' def abc model = Sketchup.active_model model.entities.each { |e| if e.is_a?(Sketchup::Edge) && e.line[1].parallel?(Z_AXIS) e.soft = true e.smooth = true end } model.definitions.each { |d| if e.is_a?(Sketchup::Edge) && e.line[1].parallel?(Z_AXIS) e.soft = true e.smooth = true end } end name = "softenv.rb" unless file_loaded?(name) UI.menu("Plugins").add_item("Soften verticals") { abc } file_loaded name end
  • [Plugin] Select Lines by Length (Updated March 9th, 2009)

    20
    0 Votes
    20 Posts
    33k Views
    bagateloB
    Yes!!!
  • Color to Image texture?

    7
    0 Votes
    7 Posts
    1k Views
    thomthomT
    @tig said: You can easily get the material's color's RGB. You then need to write a png file with those values. Import it in as a texture for that material... There are image writing modules for Ruby with stuff like GD2 ? PNG files are not trivial to deal with. If anyone are knows of a lightweight lib to use with SU Ruby then I'd be very interested. I just wrote my own BMP reader for a plugin I'm working on. A BMP writer would be easy - but the downside is the filesize...
  • Loading Ruby Scripts

    6
    0 Votes
    6 Posts
    954 Views
    M
    @d12dozr said: Plugins do not have to appear under Plugins menu, they can show up in Right click menu, Tools menu, and Draw menu. I'm not familiar with deletecoplanaredges.rb, but I would check in those places I mentioned first... Found it, it was Right Click Menu. Thanks for the Help
  • Trouble loading plugins

    5
    0 Votes
    5 Posts
    2k Views
    C
    Just to add a small rider to Jeff's excellent reply. SU only needs one plugins folder and that is the one here:- MacintoshHD/ Library/ Application Support/ Google SketchUp 7/ SketchUp/ plugins I suuggest you move all plugins from the other user level folder to the one above and remove the user level plugins folder completely.
  • Place Guide Point

    4
    0 Votes
    4 Posts
    803 Views
    TIGT
    Or this one here http://forums.sketchucation.com/viewtopic.php?p=95648#p95648
  • That plugin that 'expoldes' all components..

    5
    0 Votes
    5 Posts
    1k Views
    utilerU
    Thats the one, Chris!!!! Pilou's fragmented / explode tool was the one i was looking for.... Thanks also to wind-borne and Paul for your suggestions, was aware of Bomb but not explode / implode..... Cheers,
  • Print the Outliner?

    3
    0 Votes
    3 Posts
    1k Views
    Dave RD
    Thanks for that. I should have looked there first.
  • Conflicts avec 1001 bit tools.

    4
    0 Votes
    4 Posts
    708 Views
    R
    Good to hear
  • Architecture plug-in

    6
    0 Votes
    6 Posts
    2k Views
    utilerU
    @dizain said: Utiler, I'm waiting for compensation from Goh to $ 10 for having knocked out my windowwizer 4 with his 1001bit... But the plug-in for Rhino is another thing, with all due respect to Goh. Knocked out windowizer??? Knocked it out of what???
  • LayOut auto reference bubble

    4
    0 Votes
    4 Posts
    680 Views
    mariochaM
    @chris fullmer said: LayOut has no ruby interface, so it is not possible through ruby. The Google team would have to implement that. And yes, they could if they thought enough people wanted it! Ha, deception ! So what to do? Build a huge list of people wanting either ruby in LO or the feature in next version. I do think it was mentionned quite a few times in the last LO wishlist survey.
  • [Plugin] Counttriangles.rb by Eleandor

    4
    0 Votes
    4 Posts
    8k Views
    ken28875K
    @marian said: this might be more useful to people that make models for games, where there is a a limit of how many triangles they can use. Thanks, Marian. Very useful plugin indeed, since i work in the game industry and do all my conceptual models with Sketchup, before exporting into Maya or the game engine. Take care, _KN
  • Connect a face to face (bridge face plugin)

    14
    0 Votes
    14 Posts
    6k Views
    TIGT
    @jamma-pcb said: Has anyone got any instructions on TIGS plugin... just cant get it to work... ??? Look here... http://forums.sketchucation.com/viewtopic.php?p=226249#p226249 Run the tool - select the two faces and a rail [curve] as prompted... The path must be a 'curve' - even if it's straight lines - use 'weld' to make these into a 'curve'. Arcs, Circles and Beziers are made as curves but combinations of these or just simple 'lines' are not curves - so these need 'weld'ing...
  • [REQUEST] select lines by axis [Plugin]

    3
    0 Votes
    3 Posts
    710 Views
    B
    TIG you made my day!!! It works perfectly, it will save me hours of work! Thank you very much! PS: This code could be integrated in Thomthom's classic "selection toys"
  • Weld plugin.

    4
    0 Votes
    4 Posts
    2k Views
    Chris FullmerC
    Unfortunately the index is outdated, incomplete, and not maintained.
  • Can't find RpEdits anywhere

    10
    0 Votes
    10 Posts
    1k Views
    EarthMoverE
    I guess I was wrong. I thought the paintbrush would paint continuously on faces while the mouse button was held down, but apparently it requires a mouse click for each face. Al, if you are listening, I would love to have the ability to paint continuous faces with a material until the mouse is released. I can't for the life of me figure out why this hasn't been scripted yet. Hopefully Fredo will add a toggle in his HoverSelect to switch between faces and edges. (been waiting months and keeping my fingers crossed)

Advertisement