⚠️ Attention | Having issues with Sketchucation Tools 5? Report Here

Subcategories

  • The ideal place for beginners to get help using SketchUp
    9k Topics
    60k Posts
    BoxB
    Make it a component and save it to a component collection, then select and place it from the component panel whenever you need it.
  • No decsciption available
    209 Topics
    2k Posts
    soloS
    Hey guys I am desperate for very high resolution/quality satellite maps, I use Placemaker and I also use Nearmap but the resolution is not that great, I have tried using AI to upscale but that too does not really solve my issues. Is there another solution?
  • No decsciption available
    821 Topics
    4k Posts
    P
    please up load your model however a simple method is to split a counter into sections with if statements basic handle turn, then door.skp
  • Tip for importing DWG into SketchUp

    sketchup
    9
    0 Votes
    9 Posts
    7k Views
    M
    First of all: I am NOT a programmer, so there is ZERO error handling on this quick-and dirty script. I had tried TIG's solution, but did not work on my DWG because some of the arcs would "clip" others as they were rebuilt by the script. So I wrote this small routine to: loop through imported AutoCAD entities. select curves and group them (individually) create a more refined clone of the curve (the number of segments is controlled by two parameters. See script) Delete the original curve. Anyone is welcome to turn this snippet into something better and more reusable. Best, Marcos. theModel = Sketchup.active_model #selEntities = theModel.selection theModel.selection.clear allEntities = theModel.entities Collect user values: prompts = ["Minimum number of segments:", "Minimum Segment Length:"] defaults = [36, 10] input = UI.inputbox(prompts, defaults, "Enter Desired Settings") #set minimum length for each arc segment (in model units) userSegs = input[0] minLen = input[1] #UI.messagebox(userSegs.to_s) #UI.messagebox(minLen.to_s) allEntities.each do |i| if (i.typename == "Edge") aCurve = i.curve if (aCurve) Sel = theModel.selection unless defined?(Sel) Sel.add (aCurve.edges) newGroup = allEntities.add_group (theModel.selection) Sel.clear else #not a Curve end end end theModel = Sketchup.active_model theModel.selection.clear allEntities = theModel.entities Loop through all entities allEntities.each do |i| #open Groups, search for Curves if (i.typename == "Group") #Loop through array of Entities inside each Group subset = i.entities subset.each do |s| curve = s.curve # if it is a curve, collect a few properties if (curve) # get coord. transformation, since entities are in a group #use "transform" below to translate to global coordinates tr=i.transformation cCenter = curve.center.transform! (tr) cSangle = curve.start_angle cEangle = curve.end_angle cRadius = curve.radius cNormal = curve.normal.transform! (tr) cXaxis = curve.xaxis.transform! (tr) cYaxis = curve.yaxis.transform! (tr) cLength = curve.length #UI.messagebox(" Curve Length is " + cLength.to_s) #divides arcs in minLen(model unit) increments divSegs = (cLength / minLen).to_i #UI.messagebox("Divided Result is " + divSegs.to_s) #for very small arcs, sets a minimum number of segments if (divSegs <= userSegs) numSegs = userSegs # UI.messagebox("Using: " + numSegs.to_s) else #subdivides larger arcs using target length numSegs = divSegs.to_i # UI.messagebox("using Divided total" + numSegs.to_s) end myarc = allEntities.add_arc cCenter,cXaxis,cNormal,cRadius,cSangle,cEangle,numSegs #Erases original i.erase! end # if curve end # entities inside group loop end # if it is a group end #loop through all entities
  • How can I.....

    sketchup
    5
    0 Votes
    5 Posts
    425 Views
    JQLJ
    I'd do roads with upright extruder...
  • Texture to curved surface

    sketchup
    3
    0 Votes
    3 Posts
    351 Views
    B
    That is beautiful. I actually had the tool collection but there were so many of them that I missed this one. And the function i needed only scratches the surface (pardon the pun) of Thrupaint and that only scratches the surface of the collection. Amazing. Thanks, and thanks Fredo
  • How does one contact Trimble/Sketchup????

    sketchup
    3
    0 Votes
    3 Posts
    342 Views
    sketch3d.deS
    offic. Contact Options
  • Mirror Objects in Sketchup 2015

    sketchup
    3
    0 Votes
    3 Posts
    775 Views
    PatrickDP
    @box said: You're on the sketchucation forum, have you looked in the Plugin store right here for Tig's Mirror. Thank you so much Box, worked brilliantly. Happy days . Regards P
  • Autodesk and Trimble sign interoperability agreement

    sketchup
    2
    0 Votes
    2 Posts
    327 Views
    JQLJ
    This could be extremelly good news. I just don't like the assumption leveraged on the article about the focus being on Revit. It's very welcome that Sketchup and Revit work well in a BIM workflow, but still, most of the world is using 2D dwg files for both work and documentation and both Sketchup and Layout would benefit much more from the vast Autocad userbase, than Sketchup alone on Revit's growing but still behind userbase. Also the amount of CAD software that adheres to the Autocad standard is something to take acount for, Revit has a more specific target group.
  • To many 3d points how to reduce.

    sketchup
    8
    0 Votes
    8 Posts
    1k Views
    K
    Using models from the 3d warehouse is a risk. Always open the model in a separate file, look at the statistics, do some cleaning, renaming, welding etc etc. Most of the time I remodel it myself and just use the original as a reference for dimensions. There's always a big chance the original 3d modeller made that model with a different goal in mind. So the glasses can be either too low poly (very faceted and not suitable for doing renders) OR too high poly because the modeller wanted to spend 1.000.000 faces in making the perfect glasses and he wanted to render just one pair using his renderfarm.
  • Materials browser behavior

    sketchup
    2
    0 Votes
    2 Posts
    227 Views
    HornOxxH
    Hi you can set up multiple trays simultaneously. So I made a tray for layers only and one for materials only. Whatever tray is active as soon as I click "B" the material tray moves to the front. This way I avoid to scroll too much, instead of having all the used windows together in just the default tray. I prefer this method, if I just work on the small laptop monitor for example... In addition, you can decide whether you want to have individual trays flowing as single windows on the screen (like in older SkUp versions) or if you want to combine these trays as shown below. I hope this helps [image: 5tzI_Trays.jpg]
  • Photo Match improvements

    sketchup
    7
    0 Votes
    7 Posts
    623 Views
    utilerU
    I know where you're coming from; I wish I could take a week off and just spend it on downloading my mind and posting thoughts on SU....
  • Select and Move Tools combined into one

    sketchup
    3
    0 Votes
    3 Posts
    261 Views
    bsusalaB
    Ah! Ok, was a stupid question. Apparently I am still dependent on the way 2D programs work usually (select is moving, too). I'll look into how to change the move icon to an arrow, then Thanks for the heads-up!
  • Sphere cover by cone

    sketchup
    10
    0 Votes
    10 Posts
    790 Views
    pilouP
    No problem!
  • Problem export dwg

    sketchup
    2
    0 Votes
    2 Posts
    232 Views
    S
    Are you exporting as a 3D model or as a 2D graphic? SketchUp always exports all of a model when you select 3D model. To export only a part of a model, you can cut and paste the desired entities to a new model window and then export the new model. For a 2D graphic export, SketchUp generates essentially a snapshot of the current view. So, anything not visible on the current view will be omitted. But also the graphic will capture the as-displayed view including effects such as zoom, foreshortening and perspective, not true coordinates of points.
  • Selling commercial license Sketchup Pro 2016

    sketchup
    5
    0 Votes
    5 Posts
    1k Views
    T
    Hi, If you are still selling then I am interested. My email is chris@blagdonforge.com Thanks Chris Woods
  • LumenRT

    sketchup
    12
    0 Votes
    12 Posts
    1k Views
    sfto1S
    Well, What a bummer. As I was just ready to purchase the Studio version and noticed that Bentley has changed the "bundling" and eliminated the free version all together. Any idea of how much for a package or have they gone subscription based?
  • Need a little help

    sketchup
    6
    0 Votes
    6 Posts
    601 Views
    Paul RussamP
    And here's how it turned out. The model is quite basic on the inside as an extensive renovation is planned and there's not much point in modeling what will soon be ripped out. [kubity:1hnw9d38]tReKVG[/kubity:1hnw9d38]
  • Superimpose a Model Over an Image

    sketchup
    9
    0 Votes
    9 Posts
    2k Views
    L
    Perzactly! This is what I wanna do. I chose to turn off the Foreground Photo (within the Styles settings), and that did the trick. Thanks, Dave.
  • GCode Workflow

    sketchup
    2
    0 Votes
    2 Posts
    376 Views
    cottyC
    I wouldn't create gcode with SketchUp directly. You should export a solid object as STL and use an external slicer program (Cura, Slic3r, Makerbot, KISSlicer, ...).
  • Any Stress Calculation method/plugin for SU nowadays?

    sketchup
    4
    0 Votes
    4 Posts
    500 Views
    pilouP
    So FEM is exactly method that I had shown above or in this one! http://www.youtube.com/watch?v=MzAjrHOsZuQ
  • ATTN: Landscape Architects! Share your workflow &amp; tips...

    sketchup
    25
    0 Votes
    25 Posts
    7k Views
    J
    @patrickbateman said: I consider myself a good sketchup modeler but nowhere near as advanced as some of the stuff on here. I just started a position where I do a lot of sketchup work for a [anchor= goto=http://www.edgedesign.ae/2016/02/28/dubai-architecture-firms/:fhp7w6k7]Dubai architecture firms[/anchor:fhp7w6k7](I was mainly hired because of my sketchup skills and experience). I am trying to get as advanced and efficient as possible and am looking for new techniques, must have plugins, extensions, and general things to make my life easier and models looking better. There are so many ruby plugins I don't know which ones I should install. Right now I am using SU Podium extensively for rendering. I have been playing around with Land F/X and haven't really explored it yet but I have been using it for CAD cleanup before importing to sketchup and it works well. When working with topo I have had to go back and forth between CAD and sketchup a lot since editing topo in sketchup is difficult so I find myself importing topo, running sandbox tools, then going back to cad to fix things and doing it again a few times to get things right. I'm sure there's a better way. I am really impress after reading your work and experience your write in your post that you do lot of sketch up work for a landscape Architecture. I am pretty sure after you visit on the above given blog you can suggest us some different thing and different work that we can do in our Blog.
  • Searching for this plugin

    sketchup
    4
    0 Votes
    4 Posts
    450 Views
    M
    That's it! Curviloft. Thankyou sdmitch. Excellent plugin

Advertisement