Git Product home page Git Product logo

Comments (6)

brettfo avatar brettfo commented on July 18, 2024

You're correct that the Thickness property is not on the DxfEllipse class, but it sounds like that property isn't what you're looking for. In a DXF file, an entity's thickness isn't how thick or thin the line is, rather it's more like an elevation, or how tall it is.

If you're looking to modify how thick the entity is drawn on the screen or paper then you likely want to use the LineweightEnumValue property. This value is described under code 370 here. The value is a short that corresponds to the width of the line in milimeters * 100, e.g., a value of 25 means 0.25mm. N.b., the LineweightEnumValue property is only honored on DXF R2000 or newer files, so if you're using this library to create a file you'll have to do something like this:

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");

from dxf.

APOSWE avatar APOSWE commented on July 18, 2024

ok thank you!
and why is the source on github not complete?

from dxf.

brettfo avatar brettfo commented on July 18, 2024

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.

from dxf.

APOSWE avatar APOSWE commented on July 18, 2024

Sorry, I worded myself a bit unclearly! You're doing a great job! And if I can help in any way, please let me know!

I tried to find out exactly the difference in order to accurately describe the issue!
There I was looking for "DxfEllipse" under the path which i saw in the VS.
image

And in github i couldn't find that class "DxfEllipse"... that was why I was asking if the source is not complete.
image
That's what I meant by not source complete...
I hope I have been able to clear up the misunderstandings a little 😬

from dxf.

brettfo avatar brettfo commented on July 18, 2024

Ah, I see. Much of the code is generated at build time; look at the IxMilia.Dxf.Generator project. The properties for DxfEllipse are defined here and the generator builds the necessary code for the entity.

from dxf.

APOSWE avatar APOSWE commented on July 18, 2024

really great and clever approach! Hopefully I can bother you a few more times if I have a question... :-)

from dxf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.