Jul 1, 2022 #1 hoangthe Mechanical Joined May 5, 2021 Messages 17 Location VN I want to create a macro to contour the face of another part in the product. How can I create a surface like the one in the picture with a macro?
I want to create a macro to contour the face of another part in the product. How can I create a surface like the one in the picture with a macro?
Jul 1, 2022 #2 Little Cthulhu Marine/Ocean Joined May 27, 2018 Messages 761 Location RU You cant't make a link between geometrical features located in different parts with VBA. What you can do is to copy currently selected face with Selection.Copy and then paste it to target part with Selection.PasteSpecial with "asresult" argument. Upvote 0 Downvote
You cant't make a link between geometrical features located in different parts with VBA. What you can do is to copy currently selected face with Selection.Copy and then paste it to target part with Selection.PasteSpecial with "asresult" argument.
Jul 5, 2022 Thread starter #3 hoangthe Mechanical Joined May 5, 2021 Messages 17 Location VN So is there a way to make a line from a macro that takes a face from another part? Upvote 0 Downvote