ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info
  • Looking for work-around for Scale Tool

    sketchup
    4
    0 Votes
    4 Posts
    99 Views
    Dave RD
    Yes it is the script written by the notorious Fredo. You can find an index to the Plugins available here by clicking the appropriate red button at the top of the page.
  • Sketchup error ?

    sketchup
    13
    0 Votes
    13 Posts
    392 Views
    I
    TIG, thank you very much! I think I understood a few problems in my model. and I have tried reducing parameters of the "Capabilities" in the OpenGL everything seems a little better
  • Texture change with bends and turns plugin?

    sketchup
    3
    0 Votes
    3 Posts
    123 Views
    3
    This is great stuff thank you for the help and information.
  • Installing .rb plugins on sktechup pro8 for MAC

    sketchup
    2
    0 Votes
    2 Posts
    234 Views
    Dave RD
    Read this. It's been explained ad nauseum.
  • Smoothing in sketchup

    sketchup
    5
    0 Votes
    5 Posts
    720 Views
    GaieusG
    You can try to set welding verices in the 3ds export options dialog but that means you cannot export UV co-ordinates then.
  • Installing Fredo6 Plugins - LibFredo6.rb

    sketchup
    4
    0 Votes
    4 Posts
    7k Views
    D
    does this apply to MAC versions? can I use this for .rb and .rbz plugins?
  • Lengthening a series of lines in equal increments

    sketchup
    31
    0 Votes
    31 Posts
    2k Views
    sdmitchS
    @davecon said: Thanks for the help so far everyone I have got the hang of doing this on a straight line, now the complex bit is trying to do it on a spiral. Currently I am trying to turn the model on the left (spiral with even length lines) in the model on the right (spiral with lines increasing by XX per length) [attachment=1:2ramdbm4]<!-- ia1 -->spiral lines.jpg<!-- ia1 -->[/attachment:2ramdbm4] Ideally what I would like to be able to do is select the first line (red) and then the last line (green) and be able to input something like "starting the with the first line make all the others increase in XXmm increments" Here is the file itself so far. [attachment=0:2ramdbm4]<!-- ia0 -->spiral lines.skp<!-- ia0 -->[/attachment:2ramdbm4] Instead of going to the trouble of creating the equal length lines then extending them incrementally, I would make the "baseline", be it a flat spiral or a straight line divided into the desired number of segments, into a curve using weld and then you can create the lines originating from the curve's vertices. The code to do this is as simple as this mod = Sketchup.active_model ent = mod.entities sel = mod.selection if !sel.empty? && sel.first.curve vers=sel.first.curve.vertices # d is initial length, i is the increment, and a is the direction vector d=875.0.mm;i=87.5.mm;a=[0,0,-1] for v in vers p=v.position;pp=p.offset(a,d) ent.add_line(p,pp) d += i end else UI.messagebox "select a curve" end It would be a monumental task to try to figure out the order of the equal length lines. When you select a group of anything, there is no guaranty that Sketchup will add them to the selection in the proper order. At least that has been my experience.
  • Plugins for renders

    sketchup
    9
    0 Votes
    9 Posts
    195 Views
    grizzlerG
    @dave r said: It would also be helpful if you could specify exactly what it is you've downloaded. Did you download Kerkythea or SU2KT (the plugin for SketchUp) or both? To be honest, it sounds as if you're trying to run a marathon before you've learned to walk. I get the feeling you're right Dave It looks like I've only downloaded the SU2KT so I'll go back and get the missing stuff now. Thanks again gents.
  • 2D footprint

    sketchup
    5
    0 Votes
    5 Posts
    220 Views
    D
    Thanks - got it working.
  • Line tool won't separate plane

    sketchup
    4
    0 Votes
    4 Posts
    86 Views
    GaieusG
    All right, I sent you a dummy email you can respond to. (And at the same time, removed your email address from your post if you do not mind - it1s not wise to post such personal data publicly)
  • Simple animation

    sketchup
    5
    0 Votes
    5 Posts
    218 Views
    pilouP
    I had confirmation by Fletch himself the author of the animation above With Mover or Proper animation @unknownuser said: So the columns are just moving from below ground to above ground. @unknownuser said: In Twilight v.2.0 rendering of animation of section planes will be a nice new feature. You will even be able to render an animation of an object moving while the animated section cut is moving. So the V2 will be very very cool!
  • Sketchup style changes by print preview

    sketchup
    13
    0 Votes
    13 Posts
    3k Views
    Dave RD
    George, my apologies for not replying to your request. As far as changing line weight in the image above, this is done simply be changing the export size when exporting the 2D image (JPG or PNG), The larger the export, the thinner the lines appear when the image is viewed at the same size. So here are more examples. These two images are done using the same line style but exported at two different sizes. [image: 5883894649_77f3b73f0d_z.jpg] Exported at view size. [image: 5884460356_ac114e3930_z.jpg] Exported at 3000 pixels wide. As you can see, when the images are viewed at the same size, the line weight on larger appears smaller. Two more examples: [image: 7301405032_9c2870273d_z.jpg] Screen size. [image: 7301404944_11d91498b5_z.jpg] 3000 pixels wide. Often I want lighter lines in the final image so I'll export the edges separately at a larger size and resize the image in post processing before combining it with the textured image. In fact for image exports when I use my sketchy line styles I very often want thinner lines so I make separate image exports. [image: 7282589878_5fb9756879_z.jpg] In this image the lines were exported at 3000 pixels wide while the faces and background image as well as the shadow image were exported at 1564 pixels wide (the view size on my PC). The lines were resized in the image editor to 1564 and then combined with the other two images. The process is very fast and almost automatic for me, now.
  • Component question.

    sketchup
    8
    0 Votes
    8 Posts
    104 Views
    Dave RD
  • Ship Modeling

    sketchup
    5
    0 Votes
    5 Posts
    232 Views
    fuzzionF
    2 methods for making a boat. Subdivision (artisan) and mesh (tgi3d) methods. Both can be made quickly [image: 1SL3_Boat_makin.jpg] Boat_makin.skp
  • Intro

    sketchup
    3
    0 Votes
    3 Posts
    63 Views
    D
    Ok Thanks!
  • Splitting a spiral line into equal segments

    sketchup
    23
    0 Votes
    23 Posts
    307 Views
    pilouP
    A more mystery one! And the original curve is not "divided" by 50 on its path! Maybe at the start but surely not at the end! About strictly the question asked i prefer my solution! Each segment is equal length and can be used for redraw the same Spiral!
  • Dwg importing

    sketchup
    3
    0 Votes
    3 Posts
    79 Views
    charly2008C
    Hi, have a look at these posts http://forums.sketchucation.com/viewtopic.php?p=192701#p192701 http://forums.sketchucation.com/viewtopic.php?t=31186 http://forums.sketchucation.com/viewtopic.php?t=22199 Charly
  • Material from 3D warehouse

    sketchup
    6
    0 Votes
    6 Posts
    2k Views
    Dave RD
    Yes, you need to set up admin rights to the location in which you're saving the library. If you put it in Documents, you shouldn't have any need for the admin rights. Also, once you've created the library, go to the same menu and choose Add to Favorites so it'll show up in the Favorites list. A lot of those materials in your SKP look like they'd make better upholstery fabrics than wood. I could use some good fabrics. thanks for that.
  • Texture export issue

    sketchup
    26
    0 Votes
    26 Posts
    385 Views
    GaieusG
    Edied the texture image outside of SU.
  • Boardwalk around a curve

    sketchup
    7
    0 Votes
    7 Posts
    1k Views
    S
    Thanks very much for your replies guys. Will have a go and let you know how I get on. Much appreciated. Sven

Advertisement