The Extract >Tapered dialog box

Next
 From:  Zooen
11137.1 
Good morning,
To make this kind of chamfer I use:
the closed curve (1 on the image) >Extrude>Tapered, I give the angle, then the distance. I moved the closed curve and conical extrusion of the box for clarity.
Unless I am mistaken, I noticed that if you enter the distance first, the extrusion is directly validated with the default angle (the default angle or the last one entered). In short, you have to start by entering the angle and then the distance second (or second, the distance manually with the mouse).
Wouldn't it make more sense to put in the dialog the angle above and below the distance. Or at the very least the text at the top of the "Tapered" dialog box should be something like: "Enter the angle then the distance". I wanted to modify it for me in my FrenchStrings.txt file, but I noticed that the text "Pick extrusion point" is used twice, in the 1st box "Extrusion" and the 2nd "Tapered".

EDITED: 18 Aug 2024 by ZOOEN

  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  bemfarmer
11137.2 In reply to 11137.1 
Hi Zooen,

Your model and technique is intriguing.
Could you please post a .3dm model?

What ranges of variables give desirable results?
Could sliders be beneficial?

- Brian
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Michael Gibson
11137.3 In reply to 11137.1 
Hi Zooen,

re:
> Unless I am mistaken, I noticed that if you enter the distance first, the extrusion is directly
> validated with the default angle (the default angle or the last one entered).

Yes that's correct, the Extrude command is designed to finish when you pick a point defining the extrusion distance.

If you want to alter the angle that will be used you need to modify that before setting the distance.


> Wouldn't it make more sense to put in the dialog the angle above and below the distance.

That seems like it would be kind of weird since the option that is interactive and gets updated with the mouse moving is the Distance option. Usually in MoI commands the parameter that is tied to interactive mouse input is listed first.


> Or at the very least the text at the top of the "Tapered" dialog box should be something like: "Enter the angle then the distance".

That would also be a little strange because the angle is optional, you don't have to modify it to complete the command.

To make the prompt change, you would need to add in a new line in Extrude.htm next to the current prompt which is the one with <div id="ExtrusionPrompt">... and then in Extrude.js inside where it handles the tapered button being clicked ( pointpicker.event == 'tapered' ) you would add:
moi.ui.hideUI( 'ExtrusionPrompt' );
moi.ui.showUI( 'YourExtrudeTaperedPrompt' );

Or also you can change the text content of the prompt like this:
moi.ui.commandUI.ExtrusionPrompt.innerText = 'Tapered prompt text';

- Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Message 11137.4 deleted 18 Aug 2024 by ZOOEN

Message 11137.5 deleted 18 Sep 2023 by ZOOEN
 

Reply to All Reply to All