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

Embossing many elements ?

6 REPLIES 6
SOLVED
Reply
Message 1 of 7
Xazaks
523 Views, 6 Replies

Embossing many elements ?

I'm just starting my adventure with inventor, so sorry if my question is simple,

but I have no idea how to deal with this problem.

Is it possible to emboss multiple elements at once, without selecting each of them separately ?

I got over 2k elements on sketch which are needed to be embosed, it would be really pain to do it manually.

Thanks for help in advance 😄

6 REPLIES 6
Message 2 of 7
JDMather
in reply to: Xazaks

Can you attach your ipt file here (or at least a screen capture image)?


-----------------------------------------------------------------------------------------
Autodesk Inventor 2019 Certified Professional
Autodesk AutoCAD 2013 Certified Professional
Certified SolidWorks Professional


Message 3 of 7
Xazaks
in reply to: Xazaks

Sure, the design is in mess due to dimensioning.

I just learned to use multiple copy tool recently.

On screenshot you wouldn't probably see all things so here goes ipt file.

Thanks for interest.

Message 4 of 7
JDMather
in reply to: Xazaks

Your part is not at the origin.

Pattern Features when possible, not sketches.

 

You have repeated dimensions that aren't needed.

Edit your sketch and right click and select Show All Constraints.

Zoom in on the small circles.

 

This is unneeded complexity.


-----------------------------------------------------------------------------------------
Autodesk Inventor 2019 Certified Professional
Autodesk AutoCAD 2013 Certified Professional
Certified SolidWorks Professional


Message 5 of 7
mcgyvr
in reply to: JDMather

This ilogic code works EXCELLENT for "extruding" multiple sketched profiles.. I use it to select multiple "text" elements that I extrude .001" to represent "silkscreening" on my parts.. It can probably be modified to use emboss instead of extrude but maybe extrude will work for you also.. 

 

If TypeOf ThisApplication.ActiveEditObject Is Sketch Then
'Do nothing
Else
MessageBox.Show("Activate a Sketch First then Run this Rule", "ilogic")
Return
End If

Dim oPartDoc As PartDocument
oPartDoc = ThisApplication.ActiveDocument

Dim oCompDef As PartComponentDefinition
oCompDef = oPartDoc.ComponentDefinition

Dim oSketch As PlanarSketch
oSketch = ThisApplication.ActiveEditObject 

' Create a profile.
Dim oProfile As Profile
On Error Goto NoProfile
oProfile = oSketch.Profiles.AddForSolid

'get user input
oDistance = InputBox("Enter Extrude Distance", "iLogic", ".001 in")
oDirection  = InputRadioBox("Select Extrude Direction", "Up (+)", "Down (-)", True, Title := "iLogic")
oJoinOrCut  = InputRadioBox("Select Extrude Solution", "Join", "Cut", True, Title := "iLogic")

If oDirection = True Then
oDirection = kPositiveExtentDirection 
Else
oDirection = kNegativeExtentDirection
End If

If oJoinOrCut = True Then
oJoinOrCut = kJoinOperation
Else
oJoinOrCut = kCutOperation
End If

' Create an extrusion 
Dim oExtrude As ExtrudeFeature
On Error Goto NoExtrude
oExtrude = oCompDef.Features.ExtrudeFeatures.AddByDistanceExtent( _
oProfile, oDistance, oDirection, oJoinOrCut)

ThisApplication.CommandManager.ControlDefinitions.Item("FinishSketch").Execute

iLogicVb.UpdateWhenDone = True

Exit Sub

NoProfile:
MessageBox.Show("No closed profile found", "iLogic")
Return

NoExtrude:
MessageBox.Show("No extrusion created, check your inputs.", "iLogic")
Return

 



-------------------------------------------------------------------------------------------
Inventor 2023 - Dell Precision 5570

Did you find this reply helpful ? If so please use the Accept Solution button below.
Maybe buy me a beer through Venmo @mcgyvr1269
Message 6 of 7
swhite
in reply to: Xazaks

Do you mean on a single sketch with multiple items, that you want to emboss onto a single part, or items you want to emboss on multiple parts?

Steven White
Lee C. Moore, Inc.
www.lcm-wci.com
Inventor 2011
Intel Dual Xeon E31225 @ 3.1 GHz CPU
16 GB RAM
NVIDIA Quadro 600 GPU
Windows 7 - 64 Bit
Message 7 of 7
Xazaks
in reply to: Xazaks


@SWhite wrote:

Do you mean on a single sketch with multiple items, that you want to emboss onto a single part, or items you want to emboss on multiple parts?


Single sketch with multiple elements (all the same) on single part.

 

JDMather advice solved problem:


@Anonymous wrote:

Pattern Features when possible, not sketches.


Thanks 

it was possible to copy embos.

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

Post to forums  

Autodesk Design & Make Report