[Plugin] jf_get_dimensions.rb
59 posts
• Page 1 of 2 • 1, 2
[Plugin] jf_get_dimensions.rbThis simple plugin displays the dimensions (width, length, depth) of a selected Group or Instance.
Unlike the BoundingBox dimensions, the dimensions are correct even when the object is rotated and scaled. Units are displayed in the model units. (Width, Height, Depth) correspond to the object's (X, Y, Z) dimensions. Menu: Plugins / jf Get Dimensions reference: viewtopic.php?f=323&t=28842 Hi
Re: [Plugin] jf_get_dimensions.rbI like what this does, but menus are so clunky. Can anyone envision an interface that is fast yet non-intrusive?
What about a small, button-size webdialog that activates on an onMouseOver event? No clicking, just activates as you pass your mouse over it. Or maybe on the other end of the spectrum, a complete alternative to the Entity Info window, but with much more information? Hi
Re: [Plugin] jf_get_dimensions.rbEntity Into window with collapsible sections of data.
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
Re: [Plugin] jf_get_dimensions.rbJim, I didn't know I needed this plugin but it is very useful. Although I assigned a keyboard shortcut to it, I like your idea of mouseover so you don't have to reactivate the tool for each component.
Etaoin Shrdlu
% (THERE'S NO PLACE LIKE) G28 X0.0 Y0.0 Z0.0 M30 %
Re: [Plugin] jf_get_dimensions.rbYesterday I hacked the Query tools that comes with SU to display the .bounds dimension for the entity you hover over by request from someone at my office.
Both a query tool that display info on screen and an enhanced Entity Info window has its uses. What if you have this Entity Info++ window, where at each section you also have a checkbox. That checkbox controls what info you get on screen with Query Tool++. ![]() ![]() Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
Re: [Plugin] jf_get_dimensions.rbThis is the most used plugin in my toolbox - assigned shortcut "N" to it! Thanks again Jim for improving it!!
![]() ![]() Re: [Plugin] jf_get_dimensions.rb
The same problem with components not aligned to the world axes as the old Get Dimensions plugin: Re: [Plugin] jf_get_dimensions.rbah! oops!
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
Re: [Plugin] jf_get_dimensions.rbIn SketchUp when it rounds of a value it prefix it with a tilde ~.
If the lenght is 10.522221 and your model units are set to display only two decimals, SU will display that as "~ 10.52" Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
Re: [Plugin] jf_get_dimensions.rbThe problem is that the plugin can't recognize SketchUP's circles - it shows different sizes for x and y. Here is the old plugin:
Re: [Plugin] jf_get_dimensions.rbI get the same results as dedmin if I drag out the radius of the circle off axis or if I use an odd number (25) of sides for the circle instead of an even number. On the other hand, with the radius dragged out on axis and an even number of sides, I get the same value for x and y even with Precision set to 0.000001mm it is the same value. Those results are all understandable since the plugin is reporting the size of the bounding box.
Last edited by Dave R on Thu Jun 24, 2010 1:44 pm, edited 1 time in total.
Etaoin Shrdlu
% (THERE'S NO PLACE LIKE) G28 X0.0 Y0.0 Z0.0 M30 %
Re: [Plugin] jf_get_dimensions.rb
You're welcome.
This knows nothing of circles, or any other actual geometry. It only reports the BoundingBox dimensions adjusted for rotation. Dave, that is the only way I can reproduce the results. And it makes sense (to me, anyway) that an odd-sided circle has differing dimensions due to the segments being non-symmetrical. Hi
Re: [Plugin] jf_get_dimensions.rbI see. Thanks for the explanation. This SketchUp "geometry" is becoming a big problem for me. To bad, but I have to move to other more precise software.
Re: [Plugin] jf_get_dimensions.rbSounds like you might need a NURBS modeller - one that understand circles.
Bonzai or Rhino comes to mind. Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
Re: [Plugin] jf_get_dimensions.rbRhino is my choice - the new version 5 is very promising. Gonna miss SketchUp's components, FredoScale and the community!
Re: [Plugin] jf_get_dimensions.rbHere is a new version that displays the dimensions on the status bar
Made by a russian guy called 'newsposting' Re: [Plugin] jf_get_dimensions.rbHi, dedmin:
Can you point to the source of the Russian guy's plugin? I take the slow, deliberate approach in my aimless wandering.
Re: [Plugin] jf_get_dimensions.rbBecause this particular short code 'sorts' the three dimensions then the 'thickness' is always the least of them and the 'length' always the greatest and the 'width' is what's left over.
Be aware that it does not return the X/Y/Z dimensions - these would be dims[1], dims[0] and dims[2] respectively IF dims.sort! were to be omitted... ![]() TIG
Re: [Plugin] jf_get_dimensions.rbFor my use I'm not so worried about which is X, Y or Z. Thickness is generally the lowest value and length is usually (although not always) the longest dimension.
This new version puts a menu entry in the Tools menu but does not display dimensions anywhere for my selected component. Doesn't work on groups either. Etaoin Shrdlu
% (THERE'S NO PLACE LIKE) G28 X0.0 Y0.0 Z0.0 M30 %
Re: [Plugin] jf_get_dimensions.rbHi, all.
This, I modified the plugin Get Dimensions. If you have any questions I can answer. Last edited by newsposting on Fri Feb 25, 2011 6:07 pm, edited 1 time in total.
Re: [Plugin] jf_get_dimensions.rbThank dedmin, that upload changed plugin. I looked at the comments in the forum and would immediately respond.
1) I did not change the algorithm for determining the length, width and height, and left it in its original form, only changed the location of information display. 2) Call plugin from the menu is not convenient, since after a mouse movement information is lost. But it is very convenient to assign a hot key, such as (W), and using the command Select, selected element, press W, and the information appears at the bottom, select the next element, and then press W again appear at the bottom of the data about the object. As for me it is very convenient. In this Select command is not disabled, which is also very convenient. Re: [Plugin] jf_get_dimensions.rbSorry, I didn't check it by myself - there were no SketchUP installed. This version works by a shortcut - You assign a shortcut to this plugin and when select group or component press the shortcut - You see the dimensions in the status bar - as soon as You move the mouse they are gone. Pretty useful actually.
Re: [Plugin] jf_get_dimensions.rbThere's a big difference. Thank you for the explanation.
Etaoin Shrdlu
% (THERE'S NO PLACE LIKE) G28 X0.0 Y0.0 Z0.0 M30 %
Re: [Plugin] jf_get_dimensions.rbI upgraded the plugin, and now SketchUp automatically show the dimensions, without click menu item and hotkey, and this feature can be disabled if it interferes.
Download link: Menu: Tools > Dimensions Tool > Get Dimensions - old functional Tools > Dimensions Tool > Auto Display Dimensions - checked menu item, which switch auto get dimensions functionality after select object. P.S. Let me know if you need to modify the algorithm and move plugin to another menu for the convenience. Re: [Plugin] jf_get_dimensions.rb
Could you post this as a new separate post? It makes it easier to find the plugins. When they are hidden in the middle of a thread it's very hard to find. Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
Re: [Plugin] jf_get_dimensions.rb
I noticed that this version doesn't display correct dimensions when component/group is not aligned with the world axes - can You fix this? Thanks.
59 posts
• Page 1 of 2 • 1, 2
|