ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info
  • How do I map an image (jpg) on a sphere with SketchUp6?

    sketchup
    3
    0 Votes
    3 Posts
    316 Views
    GaieusG
    I made this model with the plugin Rich suggested: http://sketchup.google.com/3dwarehouse/details?mid=bc92eca8611ed04d2470944666440e50 Then just out of curiosity, I simply reloaded the Earth image with a Mars image and it kept the spherical UV mapping perfectly: http://sketchup.google.com/3dwarehouse/details?mid=6ed69ca0de0718c2bb014d52f42fdd7f so you can even use either model any reload the image in them.
  • Extracting coordinates from a curve

    sketchup
    6
    0 Votes
    6 Posts
    202 Views
    TIGT
    I have my Model Info > Units set to return a whole of mm, so if the dimension is not a whole number SUp rounds it to the nearest whole number, but it adds a ~ to warn you that the figure is 'approximate'***... 1.0mm ==> 1 1.2mm ==> ~1 1.9mm ==> ~2 1234.0mm ==> 1234 1234.5mm ==> ~1235 ***I find that I don't need to report dimensions etc to anything smaller than a 'mm'... You can if you like...
  • Color-Painting

    sketchup
    5
    0 Votes
    5 Posts
    163 Views
    M
    actually i think in the window>shadows palette you do want "use sun for shading" checked and set the "light" slider to 0 and the the "dark" slider to 100. This should prevent the color of a face from changing darkness based on angle of view [image: mJiO_a.jpg]
  • I want a base covering so everything stays level

    sketchup
    8
    0 Votes
    8 Posts
    207 Views
    J
    Your right it did take a while, it was very good to see what was done. I was glad that I did it the same way. Go and do the walls as well or just do 1st floor first. I don't think it will be a problem, is there? Like I said I'm off line now. I'm tempted to carry on but my eyes are tired and thats when mistakes happen. p.s. You can only do a moving screen shot like the one showing me the answer to the solution? Many thanks John
  • Dxf export

    sketchup
    4
    0 Votes
    4 Posts
    172 Views
    Jean LemireJ
    Bonjour Pierre, hi folks. Tu peux t'inscrire au forum "Français" ici même sur SketchUcation. Tu n'a qu'à cliquer sur le bouton en haut à gauche de la fenêtre pour accéder à ton "User Control Panel". De là, tu peux t'inscrire aux autre forums qui t'intéressent (utilise l'onglet "User groups". Termine en cliquant sur le bouton "Submit" au bas de la page. Salutations et bienvenue sur SketchUcation.
  • If at first you don't suceed..................

    sketchup
    5
    0 Votes
    5 Posts
    221 Views
    J
    to: xrok1, honoluludesktop, Gaieus, Thanks very much with ideas from you all, it was realy useful. I spent about a couple of hours looking at more tutorials, information, etc., being careful to 'walk not run' as it is easy to get carried away. If I do make another mess I'll finish the topic with 2nd part of the saying........"try, try again" although I'll try to avoid it. I had difficulty in 'youtube' finding anything to do with house building but I'll keep searching. John
  • Is there any way to connect endpoints?

    sketchup
    2
    0 Votes
    2 Posts
    670 Views
    GaieusG
    If it is really and "definitely" on face (and of course, the edges are all connected to a closed loop, too), you can try to select everything (the face and all the supposed to be edges of the face), right click on the selection > Intersect > ...selected. This should also form the face. SU sometimes does not form a face this way either. Then try to connect endpoints of opposite edges until you can fill all the shape or at least find where the glitch can be. Later (if they are really coplanar), you can erase these connecting lines. If you lose the face again this way, they are definitely not coplanar somewhere.
  • How can i edit the terrain?

    sketchup
    5
    0 Votes
    5 Posts
    207 Views
    GaieusG
    @adrienandre said: ...don't forget also to active the toggle terrain icon... I thought you did: @adrienandre said: ...it gave me a flat terrain even when I actived the "toogle terrain" icon...
  • New to sketchup and irender

    sketchup
    2
    0 Votes
    2 Posts
    108 Views
    D
    If I remember correctly, Irender automatically saves completed renders into a folder in "My Documents"
  • Built walls are are exact height, but there not??

    sketchup
    28
    0 Votes
    28 Posts
    501 Views
    J
    Hi, Englanddesktop here. Thanks for your pep talk, I'm not the only person in the world with a SU problem. I had unfounded reason for doubting my ability. When this problem is solved by others or myself, there will be others. I will more than likely have other problems and mistakes but I have learnt a lot, maybe the hard way. It's nice to get help when you or I get an "unsolvable" problem. Thanks very much for your input. John
  • Pulling attributes from a spreadsheet?

    sketchup
    5
    0 Votes
    5 Posts
    253 Views
    A
    Thanks TIG for the snippets - perfect. For others, this is the code I have so far. It has lots of room for improvement, and I'm happy for others to improve, extend, and post back here. I assigned attributes to each face with a key/value of faceid/x. model = Sketchup.active_model entities = model.entities selection = model.selection #Define array faces = [] # choose either the selection, or the active model if model.selection.empty? # UI.messagebox "You have nothing selected. This will color all faces that are not grouped." entities = model.active_entities else entities = model.selection end #go through every entity, and if it is a face then add it to the faces array entities.each do |e| faces.push e if e.is_a? Sketchup;;Face end #Debug; how many faces are going to be shaded #UI.messagebox "No of faces in model/selection; " + faces.length.to_s #get the materials from a csv file which has corresonding faceids @filepath=UI.openpanel("Face Color Code Choose File...","","*.csv") if not @filepath puts "FACE COLOR CODE FILE - CANCELED." @go_on = false Sketchup.send_action("selectSelectionTool;") return nil else @go_on = true end if @go_on #read the file into the instance variable @alltext @alltext=IO.readlines(@filepath) #debug; how many lines/rows were in the file? #UI.messagebox "Number of rows in file is " + @alltext.length.to_s faces.each do |m| @currentfaceid = m.get_attribute("fn","faceid",nil) #UI.messagebox "@currentfaceid = " + @currentfaceid.to_s #UI.messagebox @face #now apply the material to each face 0.upto(@alltext.length-1) do |i| #beginning with 0 line = @alltext[i] if line line.strip! #remove whitespace line.chomp! #remove carriage returns # we'll assume csv file in the format 'faceid,material_name' # e.g. "...\n6,red\n7,green\n..." if line and @currentfaceid == line.split(",")[0] # e.g. "6" #Apply the material @matchedcolor = line.split(",")[1] m.material = @matchedcolor # set material - e.g. "red" m.back_material = @matchedcolor # set material - e.g. "red" ### you can add extra tests, make materials if not existing etc etc break ### we leave the do loop as we have a 'hit'. end end end end end The contents of the CSV file, for reference: faceid,material 1,CadetBlue 2,Aqua 3,DarkOrange 4,LawnGreen 5,Red 6,PowderBlue 7,Yellow Things that need improvement: make it executable script from a menu make it work on groups and not just faces pass the contents of the CSV into an array once rather than reading the file over and over and plenty of more things I'm sure!
  • Recommended Computer Spec

    sketchup
    2
    0 Votes
    2 Posts
    153 Views
    mitcorbM
    See if this helps or gets you started on finding what you need. url: http://sketchup.google.com/support/bin/answer.py?hl=en&answer=36208 This will tell you minimum and recommended hardware. From there, you can have a basis. Pay attention to the graphics card driver comment.
  • Hello & Question about Image as a Matched Photo

    sketchup
    4
    0 Votes
    4 Posts
    121 Views
    GaieusG
    Then the second method - with the tape measure tool - is the way.
  • Exterior Lighting

    sketchup
    3
    0 Votes
    3 Posts
    166 Views
    L
    Thank you d12dozr and Ad Machine. I will check them all out.
  • More noob questions

    sketchup
    11
    0 Votes
    11 Posts
    408 Views
    ely862meE
    This is default style- [image: sGXH_style--testdefault.jpg] After saving(the saved model keeps the default style,but the model has changed the style) i get this [image: Lxs1_style--test.jpg] And i have to manually reselect the default style in order to work properly at the model.
  • Placing a model downloaded from Warehouse onto Google Earth

    sketchup
    3
    0 Votes
    3 Posts
    361 Views
    D
    If you have the model grouped so the tower is separate from the fins, you can use the Tape Measure tool to scale each group. Please see this link for more info (scroll down to "Scaling an Entire Model") Note that you need to "enter" the group that you wish to scale before you use the Tape Measure tool on it.
  • Change the default material

    sketchup
    2
    0 Votes
    2 Posts
    243 Views
    TIGT
    Like many display settings it is set in with current Style. Window > Styles click Model icon [small house] Current Style > Edit click Second Icon Button 'Face Settings' Front color and Back color icons show these current settings Click on each of them and choose new colors as desired There are several 'Picker' options available to you. When you are done Update Style with Changes [click circular-symbol button or main Style picture] You can save your Styles externally, for importation into other models, or set the Style[s] in your usual Template SKP, so it is then always set up as you like it in all new models...[image: IBEb_Capture.PNG]
  • Helix - not one full turn - HOWTO?

    sketchup
    33
    0 Votes
    33 Posts
    11k Views
    P
    The plugin on 1001 bits is nothing to do with me. This one is freeware, not a trial: http://www.freesketchupplugins.co.uk/springtool.php
  • Is there a Bezier plugin for Sketchup 6?

    sketchup
    2
    0 Votes
    2 Posts
    123 Views
    GaieusG
    Hi HR, Here it is if you mean this one: http://forums.sketchucation.com/viewtopic.php?f=323&t=13563
  • Spiral stair & archiland plugin - HOWTO?

    sketchup
    4
    0 Votes
    4 Posts
    3k Views
    P
    I'm in the process of making a plugin that will allow you to create highly customizable curved or spiral staircases. Click on the link below for more information. http://www.freesketchupplugins.co.uk/spiral_staircase.php

Advertisement