ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info
  • Transparency

    sketchup
    9
    0 Votes
    9 Posts
    141 Views
    Alan FraserA
    If you're new to layers, just be aware that they are not the same in SketchUp as they are in, say, AutoCAD...they don't separate geometry. They are generally only used for selective visibility/invisibilty of the kind that Csaba just described. The Golden Rule is to make sure that you actually draw everything on the default layer, then group it or make it a component before moving it to another layer. If you actually change your active layer from the default and start drawing on another one, you'll quickly end in a horrible mess with geometry all over the place...maybe faces on one layer and some or all of the edges defining those faces on another layer...then both of those grouped together and moved to a third layer. It can get very ugly very quickly
  • How make the seemless upholstery wall?

    sketchup
    10
    0 Votes
    10 Posts
    414 Views
    K
    @tig said: You can of course make it a physical object, after some not inconsiderable modeling and effort you'll end up with thousands of bits of geometry or at least several components for the central repeated parts and the various edge pieces... BUT have you considered using a suitable textured material applied onto a flat face? This will usually be far more efficient and it can often look as effective in many situations... Obviously 3d objects like sofas need the 3d modeling, but you said an upholstered 'wall'... which will be 'flat' anyway ? I so sorry my english not well,but thank for your advise. @jean-franco said: Hi, Dave Richards did something to be seen here: http://www.finewoodworking.com/item/17970/upholstering-your-furniture I think it work for me.thanks so much.
  • Hello all ! new user to Google Sketchup seeking advice

    sketchup
    18
    0 Votes
    18 Posts
    379 Views
    cottyC
    @gaieus said: Here is one: http://forums.sketchucation.com/viewtopic.php?p=92295#p92295 Thank you!
  • Convert to .stl?

    sketchup
    2
    0 Votes
    2 Posts
    215 Views
    TIGT
    Have you looked in The Plugins Index ? Here's an STL import/export tool http://forums.sketchucation.com/viewtopic.php?p=209946#p209946 There are also other threads about STL files and 3d-printing in general etc. This took 2 seconds [in mm]Housing.zip
  • Help with these mesh problems

    sketchup
    3
    0 Votes
    3 Posts
    110 Views
    D
    @dave r said: It looks to me as if you have a couple of internal faces. You could probably just delete the top edges that were highlighted by the plugin and it would be fine. that assumes the top faces on either side of those lines are co-planar. If not, orbit inside the model and delete the faces or delete a face on top so you can see the internal faces and delete them, the trace along one edge (not those highlighted edges, though) and heal the missing face. Dave! Thank you so much! lawll i did try the deleting edges beforehand, but that also deleted a huge chunk of other stuff. I never thought to delete the actual inner face! haha, thanks again
  • How can i reduce a large file size?

    sketchup
    4
    0 Votes
    4 Posts
    164 Views
    S
    i final uploaded it! here is the link of my project http://www.mediafire.com/?2s29lcwwov7v777
  • Where can I find nice styles?

    sketchup
    2
    0 Votes
    2 Posts
    111 Views
    TIGT
    There are several on this very forum use our Search facilities with 'style', also many free ones at Sketchup Artists - http://www.sketchupartists.org/downloads/... and some to buy at FormFonts - http://www.formfonts.com/index.php?area=9...
  • Height of entities in same layer

    sketchup
    4
    0 Votes
    4 Posts
    163 Views
    M
    @tig said: Sounds like he modeled the surface in 3d in CAD but drew/imported the carpark layout flat in 2d at z=0. So moving them up will mess up if they are all flat and the surface is 3d. A solution to this would be to group all of these carpark lines and then move the group vertically [as Gaieus explained]... but so that they end up well ABOVE the surface... then use the Sandbox tool's Drape function to make a set of lines drawn over the 3d surface - the 'flat' grouped set can then be erased, or put onto its own 'off' layer... Thanks Guys - worked a treat. (original file created in AutoCAD with over 250 layers - there is a lot of extraneous data "floating" around which is slowly being deleted to get the file down to a manageable size). Cheers and Thanks Max
  • How can I change the spacing of SketchUp's snap-to grid?

    sketchup
    9
    0 Votes
    9 Posts
    25k Views
    TIGT
    Set your length snapping to 1.5" and use my WorkPlane with a 1.5" grid set, to to make a planes to snap to to its intersections etc.......
  • Guide Planes?

    sketchup
    8
    0 Votes
    8 Posts
    404 Views
    C
    Hi Dave- Thank you for your considered response. No, your watermark solution is not quite what I had in mind! -- But it's a whole lot like how I'd have approached it back in the drafting table days: lay out grids/guides for the plan & 1 or 2 elevations, slap a piece of trace over the top and start drawing! Except if I understand correctly there's no using the lines in the watermark for inferences, right? So not exactly a step forward... From your 4th paragraph I'm thinking maybe I need to learn about layers -- which I know something about from 2D CAD and Photoshop but am barely aware of in SketchUp. Might I create a lattice of guide lines (x, y, z grids) or other geometry in a separate layer? I'm in the weird place where I don't use the program enough to get fully on top of how to use it, and the more I use it the less I know... Anyway, thank you for re-addressing my question. I think I'll look into layers and see where it gets me!
  • Re-orienting Coordinate system (Z-axis as ref)

    sketchup
    10
    0 Votes
    10 Posts
    701 Views
    TIGT
    Copy+paste this code into a file named something like data2frusta.rb in the Plugins folder module TIG def self.data2frusta() model=Sketchup.active_model ents=model.active_entities path=model.path if path=='' folder=Dir.pwd else folder=File.dirname(path) end file=UI.openpanel("Chose DATA txt file", folder, "*") return nil if not file or not File.exist?(file) model.start_operation("data2frusta") ns=24 ### number of segments name="frusta#1" ### group name lines=IO.readlines(file) lines.each{|line| line.chomp! next if line=='' next if not line=~/[0-9]/ data=line.split(' ') p0=Geom;;Point3d.new(data[0].to_f, data[1].to_f, data[2].to_f) r0=data[3].to_f/2.0 p1=Geom;;Point3d.new(data[4].to_f, data[5].to_f, data[6].to_f) r1=data[7].to_f/2.0 no=p0.vector_to(p1) group=ents.add_group() names=[];model.definitions.each{|d|names << d.name if d.group?} name.next! while names.include?(name) gents=group.entities group.name=name gents.parent.name=name c0=gents.add_circle(p0,no,r0,ns) c1=gents.add_circle(p1,no,r1,ns) c0[0].find_faces f0=c0[0].faces[0] c1[0].find_faces f1=c1[0].faces[0] v0s=f0.vertices v1s=f1.vertices 0.upto(ns-1){|i| li=gents.add_line(v0s[i],v1s[i]) li.find_faces li.smooth=true li.soft=true } f0.reverse! } model.commit_operation end end Usage: In the Ruby Console type TIG.data2frusta - select the data.txt file that is in the format for each line of x0 y0 z0 d0 x1 y1 z1 d1 where the conic-start 0 center is at [x0,y0,z0] and has the diameter d0 and the conic-end 1 center is at [x1,y1,z1] and has the diameter d1. Each line of code makes a grouped conic frusta - to change from 24 sides or another group-name edit the code at the ### noted lines... It is one step undo-able, canceling at the file dialog stops the tool...
  • Win 7 upgrade &amp; su 8

    sketchup
    18
    0 Votes
    18 Posts
    487 Views
    T
    HEeeeee'rs Desktop! [image: e5Dq_dsktopthru.jpg]
  • How to use sand box

    sketchup
    13
    0 Votes
    13 Posts
    326 Views
    E
    thanks, I notified it, will send you the file asap
  • How to change position of a copied form ?

    sketchup
    10
    0 Votes
    10 Posts
    212 Views
    mitcorbM
    hi, erzane: I think in your last image above, you did not include that remnant in your selection before moving the selection. Maybe not. But it kind of illustrates the good practice of making a component as soon as you have constructed an assemblage of unique geometry. You do not have to give the component a unique name right away, if it interferes with your workflow, but is good to go back and name it, even set up layers to place these components. After all the time I have been using Sketchup(a few years), this is finally sinking in to my thick head.
  • A source for materilal Jpeg's?

    sketchup
    4
    0 Votes
    4 Posts
    113 Views
    B
    Also http://vyonyx.com/category/down/tex/ is great for textures, cut-out people/trees etc.
  • Cannot Find Imported Materials in Sketchup

    sketchup
    5
    0 Votes
    5 Posts
    3k Views
    emerald15E
    Tried the sequence you suggest Misto 11, but still no luck. I understood the recommended youtube video... but when I go to 'intall KT materials' thru' the plugin - I'm taken to my KT directory & only have the option the select a file & open it (rather than the window sequence shown on video. I notice you're Windows XP - I'm Windows 7 - could this be another of 7's irritations?
  • Is this good for a Newbie?

    sketchup
    4
    0 Votes
    4 Posts
    225 Views
    S
    Hi Mate, yes it is good for a first time. Just a few things that may help: Attention to detail the insets in the doors are about 3 times the depth of what they would be on the real ( the irony of "real" is not lost on me) Tardis The other thing is the type on the Tardis is 3d this can be done better by projecting text onto the surface or easier do the type, in say, Paint, match background colour crop, and simply import it. file/import....... I am asuming you are an Aussie by the St Johns logo, like the man said future addict here Good luck!!
  • Importing dxf files from Strata 3D

    sketchup
    16
    0 Votes
    16 Posts
    986 Views
    TIGT
    If you have a decent 'black and white' image of this text then why not save it as a PNG with the background fully transparent [no anti-aliasing]. Import that PNG into your SKP as an Image. If you want it as a physical object [make it a reasonable size, you can always rescale things later] then use my ImageTrimmer tool [search the Plugins Index] which will cut out the forms automatically - end by choosing a simplify of ~2 so that the smooth curves get replicated and pixel-jaggedness is avoided. You then have a component with geometry faces and the original material applied to them. You can edit them using PushPull etc as desired........
  • Window tabs placement

    sketchup
    17
    0 Votes
    17 Posts
    539 Views
    Dave RD
    I don't know. Maybe they do have to be the same height. Those happen to be the native dimensions of my screens.
  • Creating a net

    sketchup
    6
    0 Votes
    6 Posts
    212 Views
    Rich O BrienR
    A pic would help

Advertisement