Dimensions Added as Objects Are Drawn - Feedback Please
-
Hi all!
¿Do you know something new about that?
It seems so interesting...
el.antuan
-
@el.antuan said:
Hi all!
¿Do you know something new about that?
It seems so interesting...
el.antuan
We are just completing the final touches on the scope of the functionality. We should have an idea in a week or so as to when the add-on will be availble.
Thanks for the interest.
Regards,
Rick
-
¡¡¡GREAT!!!
mmm... a week is too much time...
Thanks for the very good news!
Regards:
el.antuan
-
Rick
I had virus and lost your contact info.
Please send asap and I will forward the info
from here.Dave
-
Rick,
Looks good, we'd be very interested in this.
........
Ideally ALL SU Dims should have this ability (to adjust / resize the model) as shown in your demo movie file.
ie ALL DIMS ARE SMART DIMS - regardless of which tool was used to create them. (either your code or native SU).
........
If some Dims are Smart (produced with your code) and some Dims are Dumb (produced with native SU) we need a QUICK VISUAL way to differentiate the two different types (eg a toggle button to highlight all the Smart Dims Red for instance), that way we know which ones can be edited to adjust the model.
.........
All previous comments regarding layers I'd agree with also.
.........
Are you planning to adopt all current SU Dim features eg ability to change font, size, hide when fore shortened etc ???Regards
Howard L' -
I love it. But will it be possible to move these dimensions to wherever you'd like to see them? In the flash movie most dimensions stick to the surface, I'd like to move them a little away from the model, like the first two dimensions.
[Maggy]
-
A brilliant extension!
Is there a functionality to move the dimensions? when I need the measure to be outside the element or in a different place than it was originally created to?
And does it support metric system? (probably a silly question )I'd very much like to use it in work - if needed, I can also beta-test...
Regards,
Laur[zan]
-
Any news?
-
I think everyone that has ever dabbled in SU, let alone the ones that use it for productive purposes, such as work, is interested in this new avenue. I have been since getting into SU a few months ago, and have spent a bit of time studying Rubies. Here are my thoughts, not that they are worth much, or anything as far as that goes.
I too love all the different ideas that this topic has generated, but, rather than have all the aforementioned bells and whistles in the beginning, wouldnt it be feasible to start with some simple things that can be amended, altered, and added on to?
So far, we have all learned to live with what we have, some of us lately, some since the beginning, and some along the way. I would think that a simple start would be at least equal to where we are, then grow it into something that is of GREAT benefit and fits most everyones needs/wants.
I know what I think doesnt account for much, but its just some thoughts that have no bearing on anything.
Mike
-
That script looks like a cool idea.
Being an architect I could really use that. -
Yes, would be very useful tool. Please develope it!
But how it would work with arcs, circles and curves? -
This looks like a very nice addition for SketchUp. I do electro-mechanical drawings to 0.001" precision, not architecture in feet and inches, so I hope it would function as well for that purpose.
-
Did anything every happen with this....or is it still pending
-
....
-
i would like to know how this is progressing as well.
my feature request would be for equations ie: Dim1 = Dim2*5 etc...
-
-
Hi All,
Firstly I would like to thank everyone for your continued interest in the dimensioning add-on.
To bring you up to date.....as it currently stands the SketchUp API does not provide enough access to dimension objects to facilitate the development of our application. Until recently I have been in discussions with the SketchUp folks about the possibility of gaining the required access. They have not been able to provide me with a time frame for doing so. When the opportunity becomes available we will develop it. I would ask that if it is of interest to you, drop SketchUp an email.
In the mean time please keep your suggestions coming and feel free to ask me any questions that might come to mind.
Thanks again,
Rick
-
what about the functionality that already appears to be working in the video? is this real or staged?
if its real, maybe you could do something like soapskinbubble or sketchyphysics has done and release the script you have so far with an expiration date while you get the rest of your functionality worked out. to me from what i saw in the video this is already an invaluable script very much worthy of being used and evaluated by SK users. it looks like you may have solved one of the final needs i have to keep returning to Solidworks all the time for.
-
I've been doing some searching for rubies that do anything of this nature and I came up with 2 so far.
- GetDimensions.rb by CptainPanic (dimensions returned in a UI.messagebox)
- dim_angle.rb by Didier Bur (dimension added to drawing)
Maybe I am thinking too simple but give this a thought and take a more simple direction.
Right click on a line, for instance, and return its value in a UI.messagebox.
Click the message box for option, "Add Dimension" and it would add a dimension parallel to the selected line. From there, the options may could be tailored to include some of the other options people are thinking about. It would be a very simple beginning, but at least a start.I think this would be easier and maybe quicker than using the dimension tool already in SU but not as sweet as the auto-dimension tool of the future.
-
The video was an illustration of how the tool would work, if it could be created. Currently, there is no ruby access to the internal dimension objects. In fact, if you create a dimension object, select it, then run the following code in the ruby console, you'll see that the object isn't even reported as a Dimension, but simply as a "DrawingElement". The second line of code will return the methods for the object - again, nothing even close to what would be required for the creation of this tool. The third line of code shows the methods for the Entities. There is no "add_dimension" method available, and there is no Dimension object like there is Edge, ArcCurve, Group, etc.
#the following line will get the class of the selected object Sketchup.active_model.selection.first.class #the following line will show the methods of the selected object Sketchup.active_model.selection.first.methods.sort #the following line will show the absence of an add_dimension method for Entities Sketchup.active_model.active_entities.methods.sort
Advertisement