Check out Febhouse | New extensions for Shadow Analysis in SketchUp Download

Subcategories

  • No decscription available

    20 Topics
    462 Posts
    HornOxxH
    @pilou said: More appetizing in chocolate! Eggs are good as well - but only very fragile when falling down in SketchyPhysics
  • Activating the scale tool

    3
    0 Votes
    3 Posts
    426 Views
    E
    thank you so much! I am still not quite comfortable in ruby, though I have done some simple scripts before. I will try to make this work, and if it doesn't I may ask again. But for now this is great.
  • [piracy] subdivide&smooth

    14
    0 Votes
    14 Posts
    3k Views
    GaieusG
    C'mon, Marian!
  • Snap to nearest unit?

    2
    0 Votes
    2 Posts
    362 Views
    P
    I think what you're looking for is more like a grid snap, like in AutoCAD. SU only has (that I know of) a length snap, so you can start geometry anywhere, but the length is controled at intervals, which doesn't work very well when you want all of your objects to have the same relative snapped distances between each other. I would very much like to see this too.
  • REQ : Equally spacing

    5
    0 Votes
    5 Posts
    513 Views
    S
    hi this is a screen grab how vectorworks handles align, and distributing, for anyone wanting to build something like this for su [image: align_spacetool.jpg]
  • [Bug?] Pan "on border": Is this a known bug ?

    4
    0 Votes
    4 Posts
    348 Views
    R
    I think it was intended to avoid having to switch to Pan mode while drawing things.
  • Face-specific Shadow Info

    2
    0 Votes
    2 Posts
    424 Views
    T
    I see a lot of you are looking, but no one is answering. Can you please at least tell me if you think it can be done/seen examples/ something but don't know how or you simply don't think it's possible from within sketchup? Thanks, Tali
  • [IDEA] Particle cloud

    6
    0 Votes
    6 Posts
    755 Views
    thomthomT
    @earthmover said: Ilay7k, What ruby are your using for quad modeling viewports? No ruby. It's another application. Rhino. http://www.rhino3d.com/ NURBS modelling.
  • Component inst to component Def in a Selection

    5
    0 Votes
    5 Posts
    555 Views
    P
    Looks interesting. I think i can use this in a loop we have analyzes all objects and can contain several instances. Thx
  • Exporting to STL for 3D printing direct from SketchUp..???

    4
    0 Votes
    4 Posts
    640 Views
    M
    Thanks for the info, sounds promising.. All the best Matt
  • Wanted: Rotate Texture 90d Icon

    3
    0 Votes
    3 Posts
    448 Views
    G
    @genma saotome said: I not a programmer... I find myself rotating a selected texture 90 degrees all the time and the default GUI menu is pretty inefficient: select the texture and then menu Texture/Position/Rotate/90/Done. Does anyone know where I might find those functions programmed as icon? You know, select the texture, click the icon, and it's done. 7 mouse clicks reduced to 1. Ummm, and if it's not already written and is dirt simple to write, might someone write the code? I think it's one of those little things many people would like. pretty much looking forward to this ... 7 clicks to 1 ...
  • Video textures

    5
    0 Votes
    5 Posts
    527 Views
    tbdT
    what about Bridge ?
  • Select at Start-Rick

    4
    0 Votes
    4 Posts
    673 Views
    R
    @bellwells said: Thanks, Rick. Both startup.rb and smustard-app-observer.rb are in my SU6 Plugins folder. I'll reinstall again. Obviously, I never had it with SU5. Sorry you had to research my silly non-problem; I'm slightly embarrassed. No problem, really - I just wanted to make sure I hadn't written something I forgot about (it has happened!)
  • Global transformation of a selected nested face

    10
    0 Votes
    10 Posts
    2k Views
    C
    It depends on what you mean by "where the user is". If your user has just clicked on something you can find out the top level instance and then figure out the transform of the object in that instance. If your user has "opened" the object its a little trickier but you can find the top instance through an observer.
  • Rotating into XY plane

    6
    0 Votes
    6 Posts
    2k Views
    fredo6F
    Then, you can use a reverse Axis transformation. [image: VgWn_Transformxyplane2.jpg] The following code would for instance transform any given face to be in the XY plane, with its barycentre at the Origin. axes = face.normal.axes origin = face.bounds.center t = Geom;;Transformation.axes(origin, axes[0], axes[1], axes[2]).inverse Sktechup.active_model.entities.transform_entities t, face The drawback of the above method is that the orientation of the transformed face in the XY plane is not predetermined. So, if you wish to have a privileged direction, for instance an edge of the face to define the X axis, then use the following code instead, which will ensure that the selected <edge> defines the X axis, and that the Origin corresponds to the Start vertex of the edge. origin = edge.start.position xvec = origin.vector_to edge.end.position zvec = face.normal yvec = zvec * xvec t = Geom;;Transformation.axes(origin, xvec, yvec, zvec).inverse [image: 23wv_Transformxyplane.jpg] Note that you can use the transformation <t> to calculate the coordinates of points to reconstruct a copy of the face, instead of transform it. entities = Sketchup.active_model.entities face.loops.each do |loop| f = entities.add_face loop.vertices.collect { |v| t * v.position } entities.erase_entities f unless loop.outer? # for holes end Hope this help! Fredo
  • Ruby scripting interface

    9
    0 Votes
    9 Posts
    1k Views
    TIGT
    NotePad++ [ http://notepad-plus.sourceforge.net/uk/site.htm ]
  • How do I create a rb file

    3
    0 Votes
    3 Posts
    465 Views
    A
    What does it mean: "It don't work." Maybe you're using Windows and have enabled hiding file extensions. You should disable this in Windows. azuby
  • [Plugin] Hide all Edges

    3
    0 Votes
    3 Posts
    1k Views
    A
    Maybe my HideEdges Ruby script could also be a good choice. It can work on all or only on selected entities (but unfortunately not on component instances). A toolbar button isn't included, but a right-click menu item. (see my signature) azuby
  • Socket Programming in sketchup

    4
    0 Votes
    4 Posts
    1k Views
    J
    See this post also...
  • [help] can we access styles from ruby?

    4
    0 Votes
    4 Posts
    343 Views
    CadFatherC
    Thanks, there is hope then!
  • Change the color of only one instance

    13
    0 Votes
    13 Posts
    1k Views
    TIGT
    http://groups.google.com/group/SketchUp-Plugins-Dev/web/Ruby-ComponentDefinition.html#name= .

Advertisement