- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
" Only inside AutoCAD you can trust to get open and displayed every DXF.
All other options may be good, but also may not be able to view all entities. "
I will not plot all the entities and properties in the dxf file.
I have no problems with reading the dxf file.
Line, Poly Line, Circle, Ellipse,
Circle Arc, Ellipse Arc
i just need to draw them in wpf.
Line, Circle these are easy to draw.
I can say that these are easy in all drawing libraries.
others will be difficult. especially the ellipse and the ellipse arc.
It can be said that it is necessary to make a drawing method for the ellipse.
public static Curve CreateCurve(
XYZ center,
double xRadius,
double yRadius,
XYZ xAxis,
XYZ yAxis,
double startParameter,
double endParameter
)
The method can draw Circle, Ellipse, Circle Arc, Ellipse Arc with 7 parameters. that is, 4 different drawing shapes can be drawn according to 7 parameter values.
What is the drawing library that can implement this method?
Which drawing library is suitable for this method, where I can apply this method?