Sketchucation Tools 5.0.7 | Licensing improvements and bug fixes Learn More

Subcategories

  • The ideal place for beginners to get help using SketchUp
    9k Topics
    60k Posts
    M
    thank You I can't believe I am benifiting something from 2013
  • No decsciption available
    209 Topics
    2k Posts
    L
    BlenderGIS can get you pretty good images.. you do need an API key to get set up but it's all free and you can even generate 3d geometry based on the elevations in the satellite images.. it tiles in blender so you the more you zoom the better the image quality to a point.
  • No decsciption available
    821 Topics
    4k Posts
    T
    Hey Mike, I'm sure you figured this out already, but when you first create the attribute type a number with the inch mark like 0" or 0' in the value box and hit enter. This will set the unit for that attribute to inches. This only works for the first time a value is entered. After that first initial value, you will need to use the attribute info dialog to make changes. In addition, you can use 0 to set it to text (not "Default: Text") and 0cm to set it to centimeters. If anyone knows a shortcut for setting the unit to Decimal Number, I would love to hear it!
  • 3D Base Camp 2016

    sketchup
    27
    0 Votes
    27 Posts
    4k Views
    O
    Hey guys, sure was fun putting faces to names! And Pete, I looked high and low for you all conference so I could throw a couple cocktails down your throat; sorry that our paths never crossed... An excellent event, for sure, and was quite happy that I went.
  • BIM Model Help

    sketchup
    2
    0 Votes
    2 Posts
    304 Views
    G
    Nope nothing?
  • Coloring components

    sketchup
    9
    0 Votes
    9 Posts
    828 Views
    sdmitchS
    @bryan k said: I'm not sure how to frame this question. I have colored individual faces in my component and would like to know if there is a way to undo this. It has created a problem when I try to color the entire component when selected as a group. In other words, when I select the component and try to apply an overall color or material, it will only color some faces and what seems to me, not the individual faces I colored when I was in edit mode. Thanks. Something like this? [image: pttD_RemoveFaceColors.gif] Remove Face Colors.rb
  • White screen in extension store

    sketchup
    3
    0 Votes
    3 Posts
    456 Views
    john2J
    @box said: Make sure internet explorer is up to date, has a clean cache and isn't too restricted security wise. Thanks for the tip! It worked. I am using Internet explorer 11. I reset my settings to defaults for privacy and security. Now my extension store is working. I can see the lists, etc. However, this version of store works slow. That is the search and the opening of pages is slower than the previous versions. It seems as if I am using this store on a very slow internet connection which is not the case. Moreover, I have not changed anything as far as interference with my internet is concerned, i.e. my antivirus brand, firewall settings, etc. [image: z7d9_explo.png]
  • Remove duplicate entries material editor

    sketchup
    8
    0 Votes
    8 Posts
    1k Views
    Dave RD
    Your profile shows SU2013, still. So you can look under User/App Data/Roaming/SketchUp... for materials folders. Or you might just try running a search for all folders with "material" in the name.
  • 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
    591 Views
    JQLJ
    I'd do roads with upright extruder...
  • Texture to curved surface

    sketchup
    3
    0 Votes
    3 Posts
    476 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
    465 Views
    sketch3d.deS
    offic. Contact Options
  • Mirror Objects in Sketchup 2015

    sketchup
    3
    0 Votes
    3 Posts
    917 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
    459 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
    330 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
    758 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
    384 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
    1k Views
    pilouP
    No problem!
  • Problem export dwg

    sketchup
    2
    0 Votes
    2 Posts
    297 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
    2k 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
    781 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]

Advertisement