Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

Help: Disable auto chamfer between a corner from two lines in Sketch3d

wowrs1608
Advocate

Help: Disable auto chamfer between a corner from two lines in Sketch3d

wowrs1608
Advocate
Advocate

Hi,

 

I draw a triangle with three lines like this:

oEdgeArray(i) = osketch1.SketchLines3D.AddByTwoPoints(oPointArray(n1(i)), oPointArray(n2(i)))

 But at each corner, Inventor added a chamfer automatically which I don't want. How to disable this?

Regards,

Pete

tri.jpg 

0 Likes
Reply
Accepted solutions (1)
266 Views
2 Replies
Replies (2)

Michael.Navara
Advisor
Advisor
Accepted solution

This is in options. Try this

ThisApplication.Sketch3DOptions.AutoBendWithLineCreation = False

 

 

0 Likes

wowrs1608
Advocate
Advocate

Thank you very much.

I am using .net. It is:

 

Private m_inApp As Inventor.Application
m_inApp.Sketch3DOptions.AutoBendWithLineCreation = False

 

But no matter True or False, It has no effect.

Inventor 2022.

0 Likes