đź«› Lightbeans Update | Metallic and Roughness auto-applied in SketchUp 2025+ Download
  • [Plugin] Sunflow exporter update

    4
    0 Votes
    4 Posts
    8k Views
    massimoM
    @pieterv said: What does this plugin do please? [image: gm9E_Cattura.JPG]
  • Plugin to connect edges or close a contour?

    5
    0 Votes
    5 Posts
    837 Views
    ken28875K
    @cotty said: maybe Thomthoms -Edge tools: close gaps tool -Architect tools: Contour tool ? Thanks, Carsten. I will check them out.
  • [REQ] continue existing arc plugin

    12
    0 Votes
    12 Posts
    620 Views
    R
    @halroach said: @rv1974 said: Wish it was an universal Extend tool that would respect all variety of 2d: lines, splines, arcs etc. Or even for 3D like with Smart Push Pull... ..with trimming on Alt key. Dream on
  • [Plugin] Divide Angle v1.0.1 20130621

    22
    0 Votes
    22 Posts
    18k Views
    TIGT
    Assuming you have installed the .rb into your Plugins folder [somehow] and restarted SketchUp... Then please reread the tools instruction son the first post in this thread... It is NOT an Extension, just a simple tool. IT only works from the context-menu, and only appears if you have selected two lines that are suitable... I have reprinted the key paragraph below: @unknownuser said: Usage: Select two edges that are not parallel and that could intersect if they don't already share a vertex. Right-click to get the context-menu 'Divide Angle...' Note how this context-menu item is only available if the selection is appropriate. In the dialog enter the number of divisions + OK [default is '2']. It must be a positive integer [2 NOT 2.0]; otherwise you are prompted to retry. Also it must be 2 or more; otherwise there's an error message and it exits. Guide-lines are now drawn through the two selected edges and the division[s] as you have specified. The angle between the edges that is less than 180 degrees is always divided.
  • Plugin request "Section cut"

    12
    0 Votes
    12 Posts
    530 Views
    kenK
    I am surprised no one has mentioned this plugin. I use it all the time to trim steel and piping members. Just draw a face of what you wish to trim away, make your selection and select the face and presto you have trimmed the selection. I use it from drilling holes and trimming ends. http://sketchucation.com/forums/viewtopic.php?t=41582#p368373 Ken
  • Is there such plugin?

    6
    0 Votes
    6 Posts
    372 Views
    jolranJ
  • Plugin to create a progress bar

    23
    0 Votes
    23 Posts
    5k Views
    tt_suT
    Are you using Ruby threads? Threads in Ruby 1.8 are green threads, meaning not native threads. Can you elaborate on how you implemented a progressbar?
  • [Talk] Plugins Index

    179
    0 Votes
    179 Posts
    69k Views
    V
    Muchas Gracias TIG I'll try that.
  • Coordinates XYZ of camera and target

    4
    0 Votes
    4 Posts
    725 Views
    dukejazzD
    Would this help mouse control class DrawBoxPointDJ def onLButtonDown( flag,x, y,dj_view ) Sketchup.active_model.start_operation "onLButtonDown",true,true,true dj_xdown = x;dj_ydown = y;dj_view="drawBoxPoint_dj";dj_point=(Sketchup.active_model.active_view.inputpoint x,y).position puts dj_point . . . . end end Also BMVBv1-Script by T. Marek Sections: Animation - Camera ; Materials - Rendering Draws a face that covers precisely current view. Created face can be used for B&W image with alpha transparency taken from the same camera possition. Face can be semitransparent and have some openings.
  • [Plugin][$] Bifold Door Tools

    17
    0 Votes
    17 Posts
    11k Views
    G
    I have just made payment on PAYPAL & need password to open the zip/rar file. Please sens ASAP. Thank You George gap@gapdesigners.com.au gapdesigners@gmail.com
  • [Plugin] Plugin to profile/optimize code

    5
    0 Votes
    5 Posts
    3k Views
    D
    No, I didn't test it with the Developer Console. I was thinking the people who would most want to profile their code would have such a huge trace that they would want to dump to a file. Maybe printing to stdout should have an option of showing the top N entries...
  • [Plugin] Solar/daylight analysis (v0.98, 2013-08-11)

    6
    0 Votes
    6 Posts
    13k Views
    D
    I posted a new version (see original post for files to download). Recent changes: ` %(#00BF00)[# Rev. | .Date..... | Notes -----|------------|----------------------------------- 0.98 | 2013-08-11 | Add ability to read weather data from TMY3 file .... | .......... | Bug: in fine/tmy3 mode, adjust for surface tilt .... | .......... | based on beam strength on horiz. surface, not to .... | .......... | normal-to-beam surface 0.97 | 2013-08-07 | Bug: remove Numeric class overloads, make help .... | .......... | file search relative]` The enhancement in v0.98 lets you calculate the daylight factor as a ratio of observed weather to clear sky (Bird-Hulstrum model). So for example, this is the clear sky expectation over the course of a year for some geometry geolocated in Seattle, Washington (note the max daylight factor appearing in the bottom left corner area): [image: 9489912899_8d30b0ac60.jpg] Using a weather file from Seattle, the daylight factor looked like this: [image: 9492664718_87f5fbc91c.jpg] In other words, over a typical year the cloud cover allows only 78% of the theoretical maximum sunlight reaching a horizontal surface. Contrast that with the same geometry geolocated to Phoenix, Arizona. This is the daylight factor using the Phoenix TMY3 weather file. Very little cloud cover. [image: 9492657232_c8a9a7ae59.jpg] In TMY3 mode (a.k.a weather file), I could also have displayed the results in terms of watts per square meter, to get an idea of the amount of solar energy I could capture with a photovoltaic array. Note, however, that you would have to factor in PV efficiency (or inefficiency). It should also be noted that the computations currently take a while. The above test uses really simple geometry. Here is what is being calculated: triangulated network of 96 faces to analyze 27 faces make up the shading structure analyzed from Jan 1 through Dec 31 run on a laptop with a core2 duo processor @2.26Ghz, 32 bit OS, 3GB ram and it takes 126 secondsto crunch. Hence the need for this plugin: http://sketchucation.com/forums/viewtopic.php?f=323&t=53685. Profiling the code when it's trying to simulate a run of 15 days showed the following: % cumulative self self total time seconds seconds calls ms/call ms/call name 41.80 285.60 285.60 660648 0.43 0.60 BM_SimpleSolarStudy.inShadow 20.81 427.80 142.20 81464 1.75 23.65 Range#each 5.69 466.65 38.84 2404861 0.02 0.02 Array#[] 3.80 492.60 25.96 59682 0.43 0.78 BM_SimpleSolarStudy.adjustForTilt 1.89 505.49 12.88 660648 0.02 0.02 Geom.intersect_line_plane 1.81 517.84 12.36 660648 0.02 0.02 Sketchup;;Face#plane 1.70 529.47 11.63 660857 0.02 0.02 String#to_i 1.68 540.93 11.46 660648 0.02 0.02 Sketchup;;Face#classify_point 1.66 552.26 11.33 660648 0.02 0.02 Geom;;Point3d#- 1.63 563.41 11.15 661263 0.02 0.02 Hash#[] 1.62 574.51 11.10 662207 0.02 0.02 Fixnum#== 1.58 585.31 10.80 662137 0.02 0.02 Kernel.nil? 1.53 595.79 10.48 660853 0.02 0.02 Fixnum#& 1.51 606.14 10.35 661345 0.02 0.02 Fixnum#> 1.49 616.29 10.15 660648 0.02 0.02 Sketchup;;Drawingelement#hidden? 1.40 625.85 9.56 144037 0.07 0.10 Numeric#to_rad 0.98 632.53 6.68 203 32.89 32.89 Sketchup;;Drawingelement#material= 0.91 638.75 6.22 660851 0.01 0.01 Kernel.== 0.80 644.20 5.45 388599 0.01 0.01 Float#* 0.71 649.05 4.85 63402 0.08 0.10 Numeric#to_deg 0.62 653.26 4.22 119364 0.04 0.05 Geom;;Vector3d#new 0.61 657.43 4.16 744 5.60 13.40 BM_SimpleSolarStudy;;SSS_sunData#calcSun
  • [Plugin] On Screen Rolling Reel v1.1

    16
    0 Votes
    16 Posts
    12k Views
    B
    I do again, and now works fine =D thks
  • Layer plugin by Didier

    3
    0 Votes
    3 Posts
    225 Views
    G
    this plugin seems to do the same thing http://sketchucation.com/forums/viewtopic.php?t=23029 i use it from time to time and haven't noticed any problem
  • TT Lib² installerProblem?

    15
    0 Votes
    15 Posts
    3k Views
    tt_suT
    Can you post a screenshot of your Plugins folder, with the Explorer toolbars? Btw, are you updating TT_Lib, or installing fresh? You might have to manually remove TT_Lib2 before updating it.
  • Scene rename-missing dialog box

    7
    0 Votes
    7 Posts
    406 Views
    TIGT
    Thanks Renderiza... I thought there was another tool - forgot about you I think yours will do what he wants... PS: I have adjusted your PluginStore listing's description text to include the words 'rename' and 'reorder', so a search for scene rename will find it
  • Importation Composants

    2
    0 Votes
    2 Posts
    193 Views
    TIGT
    *Trans: I'm looking for a configurable plugin to import components following drop down menus. Does it exist or is it feasible? For example: Level 1: HOUSE 2nd level: drop-down menu: kitchen, bathroom, bedroom ... 3rd level: If selection room: bed, wardrobe ... Thank you in advance for your help:* It is feasible. I don't think it exists. You can of course save parts of your model as components, and nest those too. Wise use of folders within the Components folder would mimic the idea? [Trans: C'est faisable. Je ne pense pas qu'il existe. Vous pouvez bien sûr enregistrer les parties de votre modèle en tant que composants, et le nid ceux qui sont trop. L'utilisation rationnelle des dossiers au sein du dossier Components imiterait l'idée?]
  • Tubes on grid - ruby?

    6
    0 Votes
    6 Posts
    369 Views
    Didier BurD
    Hi, My "lines2tubes" plugin should do it as well Here: http://rhin.crai.archi.fr/rld/plugin_details.php?id=226
  • Challenge for any "gizmo-oriented" Plugin Guru

    3
    0 Votes
    3 Posts
    613 Views
    F
    wikii's combin gizmo has to be my favorite of any 3d modeling program - it's very clever - too bad no imperial
  • Rotate Grps/Components - not around their centre

    7
    0 Votes
    7 Posts
    263 Views
    cmeedC
    yep thats the One!!!! thank you all I'm Happy c

Advertisement