09-09-2015
02:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
09-09-2015
02:42 AM
That worked fine!!...Thanks a lot.
After creating this arc, it was erroring out in Sweep creation. I guess it did not have sufficient space to create the arc. So moved back the profile little more as below:
Private Sub ConvertContourFlangeToSweepOfEdgeWidthExtent(ByRef fcd As MyFaceData, ByRef pathSketchCurve As SketchEntity)
Dim profileSketch As PlanarSketch = Nothing
' Need to shift m_boundaryPoints along -ve normal then create sketch out of it
Dim normal As Vector = fcd.m_normal
normal.ScaleBy(-2 * m_bendradius)
Then Sweep got created fine.
One more query in the aspect. Actually, I want a separate body for this feature, so wish to give kNewBodyOperation, but errors out. So I am forced to use kJoinOperation. Any clues?