Gaps in Frame generator

Gaps in Frame generator

diego.rusnighi
Enthusiast Enthusiast
309 Views
3 Replies
Message 1 of 4

Gaps in Frame generator

diego.rusnighi
Enthusiast
Enthusiast

Hi,

with frame generator in Inventor I can add a gap  between two members using the command notch

My request is related to the possibility to recognize the notches in the assembly and force the value to zero (Note:the gap is not a 'standard' parameter)

is it possible to create a Rule in iLogic?

That would grant me the possibility to optain a .iam version without gaps between notches to use for other analysis

 

Thanks in advance 

 

Diego

0 Likes
Accepted solutions (2)
310 Views
3 Replies
Replies (3)
Message 2 of 4

CCarreiras
Mentor
Mentor
Accepted solution

Hi!

 

I believe the  Frame Generator API is not open to use in iLogic rules.

There's no functions available for Frame Generator tools.

 

CCarreiras

EESignature

0 Likes
Message 3 of 4

daltonNYAW9
Advocate
Advocate
Accepted solution

It looks possible. The Offset looks like it's a thickness feature w/ the other frame member body copied to the part.

daltonNYAW9_0-1747927769516.png

Ex. for one part

Dim oPartDoc As PartDocument = ThisDoc.Document

Dim oThickenFeatures As ThickenFeatures = oPartDoc.ComponentDefinition.Features.ThickenFeatures

For Each oThickenFeature As ThickenFeature In oThickenFeatures
	oThickenFeature.Distance.Expression = "0.25 in"
Next
0 Likes
Message 4 of 4

diego.rusnighi
Enthusiast
Enthusiast

Great observation

thanks a lot

0 Likes