haplokuon / netDxf

.net dxf Reader-Writer
MIT License
1.01k stars 411 forks source link

Cannot load spline without control points #302

Closed kryppel closed 3 years ago

kryppel commented 3 years ago

I have a file containing a spline with 3 fitpoints and no controlpoints.

When trying to load the file i get an ArgumentException from the constructor in the Spline class. I tried to use the first and last fixpoint as controlpoints instead but when trying to create a PolyLine from that Spline I get an issue with missing Knots.

Is there some kind of hack to generate the missing parts from the three known vertices?

haplokuon commented 3 years ago

I cannot reproduce your problem. Post the DXF giving you problems. An error, as you describe, should not be happening in the Spline constructor when loading a DXF file. If what you are trying to do is to build a Polyline from a Spline using the Polyline method, at the moment, you cannot do that if the Spline was created just from a set of fit points.