sketchucation logo sketchucation
    • Login
    1. Home
    2. lapx
    3. Topics
    ⚠️ Attention | Having issues with Sketchucation Tools 5? Report Here
    L
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 102
    • Posts 582
    • Groups 1

    Topics

    • L

      Strange surface behavoir

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Discussions sketchup
      18
      0 Votes
      18 Posts
      810 Views
      L
      Thanks Guy's, But I'm aware of most of what you all are suggesting and have done what has been suggested but no luck. I know the problems but there are no easy solutions that I've found. Sketch up does not handle hatch well. The plan was done in autocad first. Correction for Terry - Autocad is the most used software amongst architectural firms here in the US interms of doing construction docs. Terry Dont get me wrong. Autocad is a necessary evil in my industry. Until we can find somethiing better or the majority of the industry dumps it we will have to use it in our workflow. I'm trying to stream line and take advatage of lines already drawn by someone else on acad. It would be perhaps best to re-texture the surface in sketchup to match the grid pattern in autocad. If someone has a better way let me know. I already know the problem which to this point I am not to convinced of a good solution. Ultimately the lines were to show up in a Kerkythea rendering using a wire porcederal shader. What was the method Ithil used to do his floor? I'm sure it was in a CAD program, no. The pattern I'm showing should be a piece of cake. http://forums.sketchucation.com/viewtopic.php?f=81&t=32677&p=293887&hilit=Ithil#p293887 Thanks, Lapx
    • L

      Photomatch exterior photo w interior model?

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Discussions sketchup
      5
      0 Votes
      5 Posts
      253 Views
      tpstigersT
      A few other thoughts.... Does the building have a handy balcony or roof access? Either would be quite useful. Have you checked Panoramio to see if anyone's already done your work for you? Terry
    • L

      Center point of ARC?

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      5
      0 Votes
      5 Posts
      4k Views
      jeff hammondJ
      @lapx said: edit:Found It! http://forums.sketchucation.com/viewtopic.php?f=323&t=30506 Thanks! yeah, that's the best one nowadays (imo).. it deals with all the different variations (arcs,circles,exploded, etc) + other cpoint tools all in one package.
    • L

      Print image with auto scene label?

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Discussions sketchup
      11
      0 Votes
      11 Posts
      2k Views
      B
      great thank you gain
    • L

      Page.rb and SU 7

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      3
      0 Votes
      3 Posts
      285 Views
      L
      I PMed you Jim.
    • L

      [WIP]Executive suite

      Watching Ignoring Scheduled Pinned Locked Moved WIP
      22
      0 Votes
      22 Posts
      12k Views
      L
      I have a technical construction question regarding the metal or gold decorative motif in the executive suite office above. We are in the process of construction and I need to give some direction to the carpenter. Has anyone had any experience in making this type of construction? Would the emblem be overlayed or routed into the wood? The emblem is a metal with a gold look. I'm looking for the best method in achieving this look. Would CNC be involved? Thanks
    • L

      Change attributes for scenes globally

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Discussions sketchup
      12
      0 Votes
      12 Posts
      775 Views
      L
      Thanks Chris! I know you are busy.
    • L

      Rotate copy multiple

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Discussions sketchup
      26
      0 Votes
      26 Posts
      4k Views
      pilouP
      Seems Radial Lenght by TIg makes that!
    • L

      Virus attack

      Watching Ignoring Scheduled Pinned Locked Moved Corner Bar
      3
      0 Votes
      3 Posts
      332 Views
      J
      It looks as if your virus program is flagging buysellads.com, which is where the banner ads on the forum are being served from.
    • L

      Clean up one error

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      5
      0 Votes
      5 Posts
      500 Views
      L
      Thanks guy's! I did a search and deleted it. Works fine now.
    • L

      Error loading file projectsketch loader?

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Discussions sketchup
      4
      0 Votes
      4 Posts
      338 Views
      L
      Thanks Guy's I couldnt remeber what it was so I deleted all the related files which got rid of the error messages. Thanks for the link Cj, if I decided to use it I'll relosad it more carefully.
    • L

      Problem with intersect

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Discussions sketchup
      2
      0 Votes
      2 Posts
      239 Views
      L
      "Intersect with context" worked. Dont know why it worked and "intersect with mode" did not:?
    • L

      Dividing a curve not an arc

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Discussions sketchup
      9
      0 Votes
      9 Posts
      1k Views
      L
      great find. Thats exactly what i ended up doing, used the poly segmenter.
    • L

      Change all layers to 0

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      8
      0 Votes
      8 Posts
      661 Views
      GaieusG
      @thomthom said: Bulk select layers..? Doh!
    • L

      Extend arc

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Discussions sketchup
      3
      0 Votes
      3 Posts
      1k Views
      Jean LemireJ
      Hi folks. If you would like to try it without plugins, just to get to know native SU capabilities, see this SU file for ideas. Arc_extend.skp Note that this file was made with SU 4.0. Now, with the autocutting of line, introduced with version 6, a couple of steps can be avoided. Best regards.
    • L

      Hidden lines to lines

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      4
      0 Votes
      4 Posts
      1k Views
      TIGT
      The edges 'you can't see' on a sphere are NOT "hidden" lines - they are smooth / soft lines - a 'hidden' object is just not visible - just substitute these types into the code like this... Sketchup.active_model.entities.to_a.each{|e|if e.class==Sketchup;;Edge;e.hidden=false if e.hidden?;e.soft=false if e.soft?;e.smooth=false if e.smooth?;end} This makes all of the model's hidden/soft/smooth lines into normal ones. If you want to change the entities inside groups/components use then this... Sketchup.active_model.definitions.each{|d|d.entities.to_a.each{|e|if e.class==Sketchup;;Edge;e.hidden=false if e.hidden?;e.soft=false if e.soft?;e.smooth=false if e.smooth?;end}} Copy/Paste these lines into the Ruby Console + <enter> to effect the changes... I have also removed all 'code' hat was expecting something to be defined earlier - like 'model'... If you want to make it with a one-step undo then add this snippet to the start of the line of code Sketchup.active_model.start_operation("MakeLinesVisible"); and this to the end ;Sketchup.active_model.commit_operation
    • L

      Need plant image

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Components, Materials & Styles sketchup
      9
      0 Votes
      9 Posts
      2k Views
      L
      Thanks again Alan, Gaieus this will come in handy.
    • L

      BUGSPLAT W COPY ROTATE

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      1
      0 Votes
      1 Posts
      101 Views
      No one has replied
    • L

      IES VIEWER PROGRAM

      Watching Ignoring Scheduled Pinned Locked Moved Freeware
      3
      0 Votes
      3 Posts
      2k Views
      J
      Author's website and download is here: http://www.photometricviewer.com/
    • L

      Tool bar problem

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Discussions sketchup
      4
      0 Votes
      4 Posts
      149 Views
      L
      I've been looking for that link for the past hour n gave up. Was a there a ruby script that was a temporary fix until google gets their act together? Your, right I didnt notice it until SU 6 which is what I'm using the majority of the time.
    • 1 / 1