Sketchucation Tools 5.0.7 | Licensing improvements and bug fixes Learn More

Alkategóriák

  • No decscription available

    20 Témakörök
    462 Hozzászólások
    HornOxxH
    @pilou said: More appetizing in chocolate! Eggs are good as well - but only very fragile when falling down in SketchyPhysics
  • FFD Idea/Question..

    5
    0 Szavazatok
    5 Hozzászólások
    554 Megtekintések
    CadFatherC
    telling by your latest creations BTM, you should.. (must?) i'll be happy to pace it further if you need
  • Thanks for all you do!

    3
    0 Szavazatok
    3 Hozzászólások
    333 Megtekintések
    J
    kayjay, well said! My thanks to all of you as well.
  • I cant rigister on belw link

    2
    0 Szavazatok
    2 Hozzászólások
    162 Megtekintések
    thomthomT
    If his site is broken you probably have more luck contacting him. Try that email address listed on his main page: http://tx.technion.ac.il/~arrguedi/
  • Guide Point and Line

    4
    0 Szavazatok
    4 Hozzászólások
    383 Megtekintések
    TIGT
    The cpoint_with_cline is treated as if it were a lone cpoint at the picked point - i.e. the end of the line with the cpoint attached. The bit of line is ignored, you can't snap to it as if it were a normal cline ! The cpoint_with_cline has the cline permanently attached and it cannot be removed separately... To get rid of the cpoint's cline try this... model=Sketchup.active_model;ss=model.selection;ents=model.active_entities;ss.clear;cpts=[];ents.each{|e|(cpts.push(e.position);ss.add(e))if e.kind_of?(Sketchup;;ConstructionPoint)};ss.each{|e|e.erase!};cpts.each{|p|model.active_entities.add_cpoint(p)} ### or could be reworked to apply to a selection... ;ents=ss.to_a;
  • Follow-Me Tool on Multiple Lines.

    23
    0 Szavazatok
    23 Hozzászólások
    5k Megtekintések
    W
    Dear Bob, Great stuff! I see you get to play with much bigger toys. Your modelling looks very good, and very informative. Kind regards, Bob
  • Transformations to faces

    3
    0 Szavazatok
    3 Hozzászólások
    294 Megtekintések
    Chris FullmerC
    You can use a transformation object on face and edge entities if you use the entities.transform_entities method: http://code.google.com/apis/sketchup/docs/ourdoc/entities.html#transform_entities That makes it easier to just scale and rotate and stuff. Chris
  • Auto Centerpoint confict

    5
    0 Szavazatok
    5 Hozzászólások
    495 Megtekintések
    K
    It works great! Thanks for such a fast fix!!! KJ
  • [Question, Request] Component or Group Highligting

    3
    0 Szavazatok
    3 Hozzászólások
    272 Megtekintések
    JClementsJ
    Thank you for looking into this and the speedy response. John
  • 3d Model to Flat Map/Net - ?

    5
    0 Szavazatok
    5 Hozzászólások
    440 Megtekintések
    R
    There's also waybe
  • Windows 7 RC and SketchUp 7 PlugIns

    4
    0 Szavazatok
    4 Hozzászólások
    4k Megtekintések
    D
    Fredo6 and thomthom, Thanks for your replies. You both make good points and provided useful insights. I'll keep testing. Thanks again (for the info and the great plugins you develop). Dave
  • Comps scale handles upset why

    9
    0 Szavazatok
    9 Hozzászólások
    588 Megtekintések
    Bob JamesB
    Got it - thank you CadFather. Now I see why it would be nice to have a ruby to get the same dialog.
  • Plugin-Request: draw-Wall

    3
    0 Szavazatok
    3 Hozzászólások
    525 Megtekintések
    M
    wow.. thanks for the fast answer.. the tool "wallgrouptool" does pretty much the job! than you! And that was another proove that one's never the first with a thought -especially online.
  • Where's SU's Ruby files installed?

    4
    0 Szavazatok
    4 Hozzászólások
    318 Megtekintések
    Didier BurD
    msvcrt-ruby18.dll in the main folder is the only one I see that could be it.
  • [IDEA] Platform / Street levelling / fixing script

    14
    0 Szavazatok
    14 Hozzászólások
    1k Megtekintések
    G
    nobody got time for this at the moment? how hard is it to get this programmed on a scale from let's say 1 to 10? let me know and it might be easier to stay patient!
  • [WIP] CleverClay - Need help

    3
    0 Szavazatok
    3 Hozzászólások
    361 Megtekintések
    PixeroP
    Thanks!
  • Sketchup.active_model.materials.current behaviour

    5
    0 Szavazatok
    5 Hozzászólások
    351 Megtekintések
    thomthomT
    Maybe it's a Mac bug. Because on my PC it updates correctly. I'll test on my mac later when I get time.
  • Startup Switches

    17
    0 Szavazatok
    17 Hozzászólások
    5k Megtekintések
    TIGT
    I think that the built-in require_all method doesn't load anything other than *.rb files in the given folder. My snippet in the other thread made it do sub-folders too...
  • Plugins features in 3D World

    6
    0 Szavazatok
    6 Hozzászólások
    629 Megtekintések
    thomthomT
    hm... that sounds like they might be running into a SU group bug where group.entities.parent sometimes refer to the wrong definition. V-Ray suffered from this, but I found a way to patch it. @unknownuser said: On the other hand if i explode the components and then turn the geometry into groups (actually when i want to do that i go fist inside the component, turn everything there into a group, get out of the component, and just then explode it because it's much moreeee faster exploding components into groups than to geometry) there's no problem. I guess that's maybe because groups are just geometry "grouped" and the components can have much more "properties". From the API point of view groups and component instances both have a ComponentDefiniton, with very little difference.
  • Uninitialized constant

    12
    0 Szavazatok
    12 Hozzászólások
    3k Megtekintések
    TIGT
    Never knew require_all was built in... require_all("C:\myrubyscriptsdirectory\") You then could easily use it to do subfolders thus: Dir.foreach("C:\myrubyscriptsdirectory\"){|entry|require_all(entry)if FileTest.directory?(entry)}
  • Time Section Help...

    3
    0 Szavazatok
    3 Hozzászólások
    299 Megtekintések
    T
    Thanks Jim!

Advertisement