Community
PowerShape Forum
Welcome to Autodesk’s PowerShape Forums. Share your knowledge, ask questions, and explore popular PowerShape topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Macro Select Face in Solid Fillet wizard problem

1 REPLY 1
Reply
Message 1 of 2
twj7XZC7
265 Views, 1 Reply

Macro Select Face in Solid Fillet wizard problem

Hi I'm trying to select the top face on a solid in solid fillet wizard and i cant get it to work.

 

It is no problem to choose the face in the solid before I go into solid fillet.

 

STRING MySolidFace = solid[68].closest_face(0; 0; 100)

Print $MySolidFace
add Solid "mysolid"
SOLIDEDIT SELMODE SINGLE
PICK FACE NAME $MySolidFace

 

but when I open the solid fillet wizard, I cannot choose the face.

 

CREATE FEATURE FILLET
Radius 5,000000
Away On

add Solid "mysolid"
SOLIDEDIT SELMODE SINGLE
PICK FACE NAME $MySolidFace

APPLY
ACCEPT

 

is it another command to be used in solid fillet?

 

1 REPLY 1
Message 2 of 2
fernandezxavi49
in reply to: twj7XZC7

To select the top face in the Solid Fillet Wizard, use the command `SOLIDFILLET` with the appropriate selection syntax:

1. Ensure `mysolid` is selected.
2. Use `SOLIDFILLET` command:
```plaintext
SOLIDFILLET RADIUS 5
PICK FACE NAME $MySolidFace
APPLY
ACCEPT
```

Replace `PICK FACE NAME $MySolidFace` with the actual face selection method if needed.

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report