-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DxfEllipse - thickness missing #202
Comments
You're correct that the If you're looking to modify how thick the entity is drawn on the screen or paper then you likely want to use the DxfFile dxf = new DxfFile();
dxf.Header.Version = DxfAcadVersion.R2000;
// ...
DxfEllipse ellipse = new DxfEllipse(...);
ellipse.LineweightEnumValue = 75; // 0.75mm
// ...
dxf.Entities.Add(ellipse);
// ...
dxf.Save("path/to/file.dxf"); |
ok thank you! |
What do you mean by not compete? The spec for ellipse doesn't list thickness as an available property. On a related note, code is never complete and always able to be improved and this library is something I do in my spare time so it doesn't get 40 hours/week of work. |
Ah, I see. Much of the code is generated at build time; look at the |
really great and clever approach! Hopefully I can bother you a few more times if I have a question... :-) |
Hello!
I'm using the IxMilia.Dxf-nuget and i wondered, why the stroke of the ellipse is thicker. It looks like the property thickness is missing in the DxfEllipse?
Then i was looking at the source on github and the whole class is missing here? (src/IxMilia.Dxf/Entities)
Can you help me?
The text was updated successfully, but these errors were encountered: