.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
spline to pline API ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
i'm looking for the api to convert a spline to pline (autocad 2010 can do it with convert)
I hope exists also an api that we call to make it..
any idea ?
thanks in advance!
Re: spline to pline API ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
There is the Spline.ToPolylineWithPrecision Method.
Re: spline to pline API ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
ok, for previous version this is not available.. some work around to make it possible also with 2009 ?
Re: spline to pline API ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
How do you intend to recreate the path? I suppose recreating the Spline’s path with arcs would be a bit difficult – short line segments, however, should be fairly easy. If the spline’s total parameter (Interval) were divide by the appropriate amount:
Double seg = (Spline.EndParam – Spline.StartParam) / 100;
For example, then a for loop could find successive position with Spline.GetPointAtParameter. One characteristic of Splines is that the Interval naturally compresses at areas of high curvature so the chord height is kept to a minimal.
Re: spline to pline API ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Are you wanting to convert to a polyline to get a tighter bounding box?
If so like SEANT61 suggested just add to check the X and Y value and update some variable's value for X and Y min max value

