📷 GIF Exporter 1.1 | create animated GIFs from SketchUp models with customizable settings Download
  • REQ--Inferring an midpoint for mirroring.

    3
    0 Votes
    3 Posts
    406 Views
    david_hD
    Thanx JGA.. .Im there. I hope this new version of the mirror.rb will do what I want. D
  • Common face of two edges

    5
    0 Votes
    5 Posts
    361 Views
    fredo6F
    @plha said: Fredo: I like that approach, as it happens, I might use this code in some other place of my silly program, it just does not solve my initial problem - to be able to select one particular face. I am trying to avoid drawing one more edge (on one of the unmarked edges of shaded face in my picture) - so I wil have unambiguos common face - but that lacks elegance a lot. You have to figure out an additional criterion then to say which face you like to have. For instance, the fact that the normals to each edge crosses within the surface, or any other condition.
  • 3D-Bezier tool?

    11
    0 Votes
    11 Posts
    2k Views
    N
    @chris fullmer said: Bezier Curves is in the draw menu … Yes, of course. But where are the tools for bezierspline? I miss the bezier tools palette. I had them a few weeks ago.
  • Export each layer to seperate 3d object

    2
    0 Votes
    2 Posts
    335 Views
    Chris FullmerC
    I don't know of an exporter that will do what you want, though there are lots of different renderers out there that might give an option like this. This might help. On exporting, you can choose to export by layer. So you could then have all the geometry separated by layers inside 3dsmax already. Then you could manipulate them there if you'd like. Otherwise, looks like you might be writing your own ruby. Chris
  • Beginner having issues with ends....need help

    4
    0 Votes
    4 Posts
    459 Views
    B
    Jim, thank you for always helping me out. I thought I had the right syntax, perhpas some things don't have to be there.
  • Group by material

    2
    0 Votes
    2 Posts
    309 Views
    BurkhardB
    It is called group by materials.rb. You're on the right track. Take a look at Didiers side.
  • Question about position in space of an object

    6
    0 Votes
    6 Posts
    488 Views
    B
    thanks! That seems to be what I need. Bender
  • How to give a thickness to a surface?

    6
    0 Votes
    6 Posts
    627 Views
    V
    ok, it works. Thank you very much!
  • Slice-delete

    8
    0 Votes
    8 Posts
    2k Views
    I
    / Just to tag onto this thread in case some genius comes up w/ a Ruby (great faith in Google here also..;-) and add my interest. The seven step work around (select/section/create group from slice/explode/delete plane/delete edges and surfaces on one side of the plane/heal the open end) is OK when we trim a rafter or three, but we need to animate a wind blown "explosion" and it would be great to find a Ruby that could slice and dice a group/component and leave the pieces or sections of the orig object grouped and intact. ((If I understood how you all programmed these scripts, I'd probably know this is not easy, so my apologies in advance.)) /Dennis http://insitebuilders.com /
  • Collaborative Sketchup

    6
    0 Votes
    6 Posts
    729 Views
    S
    Phil> That video was what I had in mind when I made the 'Sketchup-Life' statement. I see we have some people working on it, and some older threads about it. I like the mock-up, but I would allow each user to have their own view, and just use an arrow to approximate other views for other users, also a color-based highlight showing who has what selected.... Just from my journeys through the documentation, I believe it's well doable with sketchup as it is now, to a great extent. Even things like the texture sharing can be done with ruby and javascript. Most of it can be done with just ruby, but the webdialog would give us a nice update timer, and an easy to do chat interface. Anyway, it's after atleast 2 other scripts I gotta write.... so I can't work on it just yet I hope one of you other guys gets something up soon, and open source is always nice If not, I'll get to it eventually
  • [ruby-doc] ComponentDefinition.insertion_point=

    2
    0 Votes
    2 Posts
    474 Views
    TIGT
    ComponentDefinition.insertion_point returns the 'origin' axes of the Component Definition as it was originally made or they where later relocated - which affects the subsequent insertion point of instances. ComponentDefinition.insertion_point=[12,34,56] <say> will appear to reset this BUT when you repeat the above although it returns this new value it doesn't move the axes or where subsequent instances are placed... Weird...
  • How to receive correct coordinates of all vertexes?

    3
    0 Votes
    3 Posts
    461 Views
    A
    Correctly it will be whew: ... @lines = [] extract_lines(group.entities, group.transformation)#!!! ... def extract_lines(ents, tr) ents.each do |e| if e.typename == "Edge" line = [e.vertices[0].position, e.vertices[1].position] line[0] = tr * line[0] line[1] = tr * line[1] @lines << line elsif e.typename == "Group" extract_lines(e.entities, (tr * e.transformation))##!!! elsif e.typename == "ComponentInstance" extract_lines(e.definition.entities, (tr * e.transformation))#!!! end end end and it works!
  • Entities, how many is too many?

    2
    0 Votes
    2 Posts
    293 Views
    B
    Hi. I forgot to add another simple question. If I have an entity object, say entities[0]...is there a way to retrieve that entities' present coordinates? Something like: coordinate = entities[0].get_3dCoord Is there such a method? How can I do this? Thank you in advance!
  • [Re-quest]

    16
    0 Votes
    16 Posts
    1k Views
    CadFatherC
    i second the idea of automatic camera recording (if it works with space nav). and if all the created cameras can be joined by a polyline, even if their number exceeds sanity - the polyline can be tweaked with the bezier tools and scenes recreated with flightpath
  • Undo Deleted Entities

    4
    0 Votes
    4 Posts
    495 Views
    J
    I know what a Hash is in Ruby, but are you guys talking about the same "hash"? It's not clear how I could use a Ruby hash without running into the same problem; needing to search Entities for the matching ID. I wanted one of my plugins to handle selections in undo and redo operations, so I wrote a Selection Manager to handle it. It appears to work just fine using the entityID of each selected entity stored in an array of arrays; and stepping back and forth thru the stack. Second issue, there appears to be a que-ing, or scheduler in Sketchup? If I call Sketchup.undo followed immediately by my undo, the entities have not been "undone" in time for my undo to find them. I hacked it up using... Sketchup.undo UI.start_timer(0.1) { my_undo} Any alternative?
  • SU view inside WebDialog

    5
    0 Votes
    5 Posts
    407 Views
    F
    Hello, Actually I was wondering if I can preview an entiy drawing inside the webdialog before create it into current model. This will be used on entities created from parameters like width, length, etc. As soon as the user change some of these parameters I could show a preview drawing and only after he hits Ok it creates the entity inside current model. Any ideas? Regards, Fernando
  • Web exporter

    12
    0 Votes
    12 Posts
    996 Views
    chrisglasierC
    @gieselmant said: I had this same problem. ... Hope this helps. Thanks, I have as they say moved on, but I may well go back to it in the future when your advice will be undoubtedly useful. Cheers Chris
  • [Solved] What's a ray?

    10
    0 Votes
    10 Posts
    818 Views
    david_hD
    the one and only Ray. . . .[image: W8BA_ray.jpg] everybody sing along. . . Hit the Road Jack. . .doncha come back no more, no more, no more , NO MORE. . .
  • Max' shell like modifier

    5
    0 Votes
    5 Posts
    910 Views
    plot-parisP
    yes, Juju, I think you are right - the jpp tool is the best way to achieve this at the moment. you just have to make sure to choose "keep original faces" (right click > additional options), which I allways forget the first time
  • [Solved] Translate along a plane, or from Plane to Plane

    13
    0 Votes
    13 Posts
    829 Views
    S
    Lol, kinda the opposite of what your plugin says it does... isn't it? Still not what I need however, I need to be able to do this in a ruby script, but I think I got it down. Gotta give your plugin, and a few others a try sometime. There are some very good ideas being worked on around here. [Edit] Ohh and from what I can see in the pictures there, your tool creates shapes on a parallel plane, I need them on the same plane, just not necessarily within the face selected.

Advertisement