How can I convert Bspline curve into Simple Curve.

when CAD operator create complex-shape using "Flood" method then curve convert into bspline curve.

I don't want this Spline curve.  It there any tool , formula or code for converting bspline curve into simple curve without misplacing ?????

Parents
  • B-Splines and Curves

    Unknown said:
    I don't want this Spline curve

    What's wrong with B-splines?

    Unknown said:
    Is there any tool, formula or code for converting B-spline curve into simple curve without misplacing?

    A B-spline is a mathematical concept represented in VBA by the BSpline object. You can obtain a BSpline object by reading a BsplineCurveElement from your DGN model, then invoking ExtractBSlineCurve.

    Once you have a BSpline object, you can interpolate its points. Then, use that point list to construct a CurveElement.

    But why is a CurveElement preferable to a BsplineCurveElement?

    Regards, Jon Summers
    LA Solutions

     
    Regards, Jon Summers
    LA Solutions

Reply
  • B-Splines and Curves

    Unknown said:
    I don't want this Spline curve

    What's wrong with B-splines?

    Unknown said:
    Is there any tool, formula or code for converting B-spline curve into simple curve without misplacing?

    A B-spline is a mathematical concept represented in VBA by the BSpline object. You can obtain a BSpline object by reading a BsplineCurveElement from your DGN model, then invoking ExtractBSlineCurve.

    Once you have a BSpline object, you can interpolate its points. Then, use that point list to construct a CurveElement.

    But why is a CurveElement preferable to a BsplineCurveElement?

    Regards, Jon Summers
    LA Solutions

     
    Regards, Jon Summers
    LA Solutions

Children
No Data