⚠️ Important | Libfredo 15.6b introduces important bugfixes for Fredo's Extensions Update
  • Shape bender plugin

    3
    0 Votes
    3 Posts
    565 Views
    Chris FullmerC
    Hi Mike, I guess you missed the help we offered earlier. It was sort of hidden in a thread on another topic. Check it out here: http://forums.sketchucation.com/viewtopic.php?f=323&t=30023&p=263719#p263719 It would probably be best to respond here in this thread though, so we can keep things organized. So check out those answers and hints given there, see if anything helps. And then please respond in this thread if it worked, or if you still need more help. Thanks! Chris
  • OnChangeActiveModel observer

    2
    0 Votes
    2 Posts
    223 Views
    thomthomT
    Depends what you intend. If you mean when an OSX user swap between model windows - then no, there is no such observer. But there is an observer that informs you when the user opens or makes a new model: http://code.google.com/apis/sketchup/docs/ourdoc/appobserver.html
  • Plugin search + plugin request

    6
    0 Votes
    6 Posts
    642 Views
    fredo6F
    @unknownuser said: Oh... thank You for the advice on the TimeTrack ruby. But to be honest i was hoping that someone will take my idea and write a script that does the things i was writing about. Guess i'll have to use TimeTrack... even if it's not entirely thing i was looking for. /me turns around pretending to be ready to walk away yet hoping that someone will stop /me with words "Wait! I can do this!" Hi, For the Bezier and non Bezier curves, see BezierSpline Your idea of automatic tracking time by model is excellent. This is not so simple with the current Ruby API, but it can be done. Fredo
  • [REQ] -- Hot Key

    3
    0 Votes
    3 Posts
    485 Views
    jeff hammondJ
    well, yeah, that's what i do sometimes.. definitely not a single click process though.. and even then, i don't do it as often as i should.. seems like i usually end up resorting to the toolbar because stopping to set up a shortcut kills the workflow.. thing is, i'm often left trying to find the icon on the toolbar etc.. i dunno, it's just an idea that i'm throwing out there.. i'm not expecting someone to actually write this thing
  • Round corner *solved*

    6
    0 Votes
    6 Posts
    535 Views
    G
    I re-downloaded the zip file, unzipped & it's there. What a great plugin. Thank you, Glenn
  • Note or label in acres

    5
    0 Votes
    5 Posts
    1k Views
    G
    Thank you Tig, works like a charm !!!!! Glenn
  • PLUGIN REQUIRED: LINE GRADIENT QUERY

    5
    0 Votes
    5 Posts
    509 Views
    TIGT
    Updated as new tool set here http://forums.sketchucation.com/viewtopic.php?p=264130#p264130
  • Plugins V Extensions.... Whats the diff?

    4
    0 Votes
    4 Posts
    381 Views
    thomthomT
    Yea, never found the Extension that useful my self. Imagine - if all plugins where extensions. It'd be very hard to find the right plugin in the list. No search filter, and the list box is very small. Doesn't scale well.
  • Vertex tool question - Toolbar

    14
    0 Votes
    14 Posts
    848 Views
    thomthomT
    Ah! Yes. I don't think I mentioned that in the manual. I'll see if I can update it with more info. And possibly make a FAQ section so it's easier to find.
  • Problems installing LibFredo6 and FredoScale

    2
    0 Votes
    2 Posts
    487 Views
    wind-borneW
    path begins with HD, not with My Mac [image: xULc_capture-1.png]
  • Vertex tool question

    7
    0 Votes
    7 Posts
    949 Views
    Dave RD
    [image: 3812424367_f424ff6a5c.jpg] [/url] Is this the sort of think you're after? I did this before ThomThom probably even thought of Vertex Tool. His tool might make it easier to do but I haven't tried to do it with that. If this is the sort of thing you're after, I can post a link to the tutorial I did.
  • Adding child group while parent group is active

    10
    0 Votes
    10 Posts
    1k Views
    M
    Well I guess I will have to get off my butt and post the answer to my own question: # clear everything out Sketchup.active_model.entities.clear! # add the parent group group1 = Sketchup.active_model.entities.add_group # set parent’s transformation group1.transformation = Geom;;Transformation.translation(Geom;;Point3d.new(10.m, 0, 0)) # add some points to the parent group group1.entities.add_cpoint(Geom;;Point3d.new(0.m, 0.m, 0.m)) group1.entities.add_cpoint(Geom;;Point3d.new(5.m, 5.m, 3.m)) # add the child group group2 = group1.entities.add_group # set child’s transformation group2.transformation = Geom;;Transformation.translation(Geom;;Point3d.new(0, 10.m, 0)) # add some points to the child group group2.entities.add_cpoint(Geom;;Point3d.new(0.m, 0.m, 0.m)) group2.entities.add_cpoint(Geom;;Point3d.new(5.m, 5.m, 3.m)) # group transformations are now correct puts Sketchup.active_model.active_path puts group1.transformation.to_a.join(', ') puts group2.transformation.to_a.join(', ') puts Sketchup.active_model.edit_transform.to_a.join(', ') # from top level active_path = nil group1.transformation = [1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 393.700787401575, 0.0, 0.0, 1.0] group2.transformation = [1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 393.700787401575, 0.0, 1.0] edit_transform = [1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0] # open group1 active_path = [group1] group1.transformation = [1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0] group2.transformation = [1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 393.700787401575, 393.700787401575, 0.0, 1.0] edit_transform = [1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 393.700787401575, 0.0, 0.0, 1.0] # open group2 active_path = [group1, group2] group1.transformation = [1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0] group2.transformation = [1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0] edit_transform = [1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 393.700787401575, 393.700787401575, 0.0, 1.0]
  • Select by area +/-"X"%?

    7
    0 Votes
    7 Posts
    1k Views
    EscapeArtistE
    TIG, Thanks for the code! I haven't had a chance to implement it yet, just had a new addition to the family and have been busy since 24th Jul. No time for SU, and this is the first chance I've had to view the forums in weeks.
  • Copy along path and keep?

    11
    0 Votes
    11 Posts
    3k Views
    Chris FullmerC
    Oh Hi Mike, I missed your question here in this thread, if its ok with you, I might split it out into its own topic, with a title that describes what you want - help with shapbender. You can upload your model you are working with and I'll look at it. Probably the real problem is that you probably have it installed wrong. When you unpackaged the zip file, it probably messed up all the files that go along with shape bender. You should have a clf_shape_bender_loader.rb script in your plugins folder. And a slf_shape_bender folder that has a series of other files in it. Please verify that too. Thanks, Chris
  • [Plugin] Menger Sponge 1.0

    8
    0 Votes
    8 Posts
    8k Views
    R
    @starling75 said: Menger in the field Abstract art at its best.
  • Cool plugin idea

    17
    0 Votes
    17 Posts
    2k Views
    BoxB
    @tig said: We're trying to find a 'cross-platform' solution though... I understand that Tig, I just mentioned it because I thought perhaps some of the coding from Win 7 might help to make it work.
  • RoundCorner Plugin

    8
    0 Votes
    8 Posts
    5k Views
    J
    And in the end it was that simple..... Just create my own folder. If only the rest of life's problems were that simple Thank you DEFPARAM... and thank you Fredo!
  • Create a Button for a Plug-in

    4
    0 Votes
    4 Posts
    500 Views
    TIGT
    No problem - In 'Search' try several words I used 'mirror toolbar' and got it as the third hit. If you have an idea it was my bag then used 'Advanced Search' link and add author 'tig' etc - then it's the first hit...
  • Bubbled face

    6
    0 Votes
    6 Posts
    878 Views
    fredo6F
    @mac1 said: Fredo's Curviloft tool seems like a good candidate to me To avoid the small valley, you should skin with 4 contours, not three. The best is to draw small segments in the corners to tell where you wish to cut the contours. Then you can generate the whole shape by preselecting all edges. [image: CbOo_BubbleMac.jpg] One last suggestion: decrease the number of segments of the rounded corners, because it generates a very dense mesh on the borders of the shape. Fredo bubble_mac1 - curvi.skp
  • [Plugin] Scene Tweaker

    5
    0 Votes
    5 Posts
    15k Views
    daleD
    Just when I get used to something.....

Advertisement