04-26-2022
03:03 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
04-26-2022
03:03 AM
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
Solved! Go to Solution.
04-26-2022
03:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
04-26-2022
03:37 AM
This is in options. Try this
ThisApplication.Sketch3DOptions.AutoBendWithLineCreation = False
04-27-2022
03:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
04-27-2022
03:32 AM
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.