sketchucation logo sketchucation
    • Login
    1. Home
    2. tim
    3. Topics
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info
    T
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 30
    • Posts 432
    • Groups 1

    Topics

    • T

      Drawing wing construction model

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Discussions sketchup
      4
      0 Votes
      4 Posts
      656 Views
      T
      Lofting! That's the word I needed to remember... now what was I asking about? Oh yeah; curviloft by Fredo. Does a lot of astonishing things and I might even be able to work out how to control which one it does for me http://sketchucation.com/forums/viewtopic.php?p=248195#p248195
    • T

      3D deformation library released

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

      Puzzling position of axes when inserting a component

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      9
      0 Votes
      9 Posts
      214 Views
      Dan RathbunD
      @tim said: ..., for this case as an example, one could actually create a blank page and set it up as needed rather than having a rather cockeyed 'new' message that actually creates, does setup that isn't wanted and then leaves one to work out how much to undo… right now it isn't 'new' but 'copy'. Well we are supposed to be able to do this with the flags argument in the add() method. see page.update() for an explanation of the flags. What it is missing, is a camera argument. It assumes you wish to copy the current view.camera So you have to modify the new page's view / camera after it is created. (It gets set to the current selected page, whether you want this or not.)
    • T

      View.zoom & zoom_extents 'bugs'?

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

      Can page/scene creation be undone in undo/redo system?

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      4
      0 Votes
      4 Posts
      173 Views
      T
      That's the usage I put in - with the second parameter 'true'. It does indeed speed up making many scenes, quite noticeably. I haven't fully characterised how many scenes need to be undone to cause a crash (EDIT - I said originally 'kill' and I realised you might be thinking 'slow down horribly' rather than crash, burn, quit rudely etc) but since 'a few' works OK (except for the damned pages staying in place instead of going away) and 'a few dozen' crashes, I guess it's somewhere in the middle.
    • T

      Closing an open component API

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      7
      0 Votes
      7 Posts
      152 Views
      Dan RathbunD
      @tim said: Yeah but you know what it's like - Yes I've been there. Was just teasing. And it takes awhile to get used to how they organized the API.
    • T

      [Plugin] ComponentScenes v0.3 UPDATE

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      17
      0 Votes
      17 Posts
      13k Views
      K
      Thank you Tig. I put this code in the toolbar editor. Works great.
    • T

      Ruby API Pages.add bug(s)

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      4
      0 Votes
      4 Posts
      103 Views
      T
      Doc and code drifting is quite possibly one of the biggest issues affecting code maintainability. I've never quite got over the idiocy of a few people I've worked with that really took to heart the attitude of "documents and comments? Why do you think it's called 'code'?" Certainly when I was managing a team I didn't let anyone get away with that - at least where I could detect it… An old colleague came up with a pithy way to describe what ought to happen - "don't document the code, code the document!" I didn't know that there is a separation between Page and View; now I do, so thanks for that. The specific problem I had with my code was that with no named page in a fresh drawing simply adding a page, hiding everything, adding my new layer, adding the copy of the selected component and updating the page left an apparently mangled drawing because there was still only one page visible and it no longer had the main model visible. I can see that going down well with anyone trying out a new plugin! As a workaround I've made it add a default new page before adding my 'real' new page so that at least there is no nasty surprise.
    • T

      Detecting duplicate components

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      7
      0 Votes
      7 Posts
      123 Views
      Dan RathbunD
      @tim said: @dan rathbun said: Also if you have the DynamicComponents extension loaded, it adds some scaling methods to Group and ComponentInstance. Undocumented Geom::Transformation methods? ... If it is only added by an extension, I imagine I'd have to check that it exists and is active on the target system. if the DC extension is loaded, Then: ` defined?($dc_observers) >> global-variable defined?(DCObservers) >> constant` The keyword defined? returns nil (so evals false,) if the arg is undefined. And further if the DC extension is loaded: Geom::Transformation.method_defined?(:rotx) %(#008000)[>> true] %(#000000)[As well as:] roty rotz xscale yscale zscale Sketchup::ComponentInstance.method_defined?(:scaled_size) %(#008000)[>> true] %(#000000)[As well as:] local_transformation last_scaling_factors unscaled_size %(#000000)[(and one that only the DC extension should call:] set_last_size %(#000000)[)] .
    • T

      Make a scene for each component

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      11
      0 Votes
      11 Posts
      521 Views
      T
      My first version of an attempt at solving this is http://forums.sketchucation.com/viewtopic.php?f=323&t=45790
    • T

      LO Dimensions offset from actual points

      Watching Ignoring Scheduled Pinned Locked Moved LayOut Bug Reporting layout
      23
      0 Votes
      23 Posts
      11k Views
      Dave RD
      Marc, I've done dimensioned three or four projects with LO2013 and haven't had any problems with offset dimensions at all. Thank you so much for the fix.
    • T

      Imorted images stay visible when editing components, even th

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Bug Reporting sketchup
      2
      0 Votes
      2 Posts
      720 Views
      GaieusG
      Yes, this is a known bug but will hopefully get fixed soon.
    • T

      3D textures needed

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      1
      0 Votes
      1 Posts
      567 Views
      No one has replied
    • T

      New(ish) HouseBuilder ruby?

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Discussions sketchup
      14
      0 Votes
      14 Posts
      4k Views
      C
      @tim said: Here it is anyway - modified Housebuilder.rb with the door sizing fixed to compensate for the rough opening offset I downloaded HouseBuilder.rb. Should HouseBuilder_extension.rb be removed from the plugins folder?
    • T

      SUPro 7.1 cannot export to dwg

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Bug Reporting sketchup
      16
      0 Votes
      16 Posts
      2k Views
      thomthomT
      @lusodxb said: Hi im new to this forum and am having problem exporting my model form skp 8 pro to dwg! can anyone help? Thanks If you describe the problem we might.
    • T

      Random LO crashes

      Watching Ignoring Scheduled Pinned Locked Moved LayOut Bug Reporting layout
      2
      0 Votes
      2 Posts
      9k Views
      B
      Tim - if you can send me the file, I'll take a look, fix it, and see if we can categorize it. b
    • T

      Section planes display when not supposed to

      Watching Ignoring Scheduled Pinned Locked Moved LayOut Discussions layout
      12
      0 Votes
      12 Posts
      4k Views
      A
      About section plane to display or not (and the section to display or not), you may create a style (from the house icon, save it by right click on your style library) with these "forced" options (checked). Because the style library is shared with Layout, you may fix the problem from Layout by selecting the special style. A lot of time saved and very ergonomic solution ! I have saved for example these styles : Colored fine with section (only section displayed, without section planes) Colored fine without section (no section & section planes displayed)
    • T

      Detail drawing cross-references

      Watching Ignoring Scheduled Pinned Locked Moved LayOut Feature Requests layout
      1
      0 Votes
      1 Posts
      10k Views
      No one has replied
    • T

      LO seems to not save fount opacity settings

      Watching Ignoring Scheduled Pinned Locked Moved LayOut Bug Reporting layout
      3
      0 Votes
      3 Posts
      10k Views
      T
      @gpaul said: Hi Tim, I'm Paul McLean and I am the Google engineer who is mostly responsible for text in LayOut. Thanks very much for explaining the problem. @gpaul said: What you are trying to do is a great idea and entirely reasonable. The hitch is that LayOut stores text in the document in RTF format. RTF does not support alpha (transparency) values for font color, so that information is lost when the internal text engine generates the RTF for LayOut to store. Granted the UI shouldn't be giving the user the expectation that alpha is supported for text (this is a logged bug and not as easy to fix as you might imagine). Ah, right. Good old RTF. I don't suppose the colour table in indexed by the font foreground command can include transparent colours? Probably not. RTF was carefully designed to be infuriating... @gpaul said: A work-around might be to create a "water-mark" image with transparency (PNG supports this) and overlay that on the page. Put it on a layer by itself and it will stay out of your way when editing the document. Yah. Excellent idea. I already have the text on a layer so I can easily turn it off when the drawings are printed in final form, so this should be easy. Thanks again. [Edit] Created a PDF file with just the large text in low-opacity colour, inserted it into the draft layer and presto - no more issue.
    • T

      Useful architectural details book

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Discussions sketchup
      6
      0 Votes
      6 Posts
      646 Views
      P
      I have also found the Francis Ching has some similar books which are excellent!
    • 1
    • 2
    • 1 / 2