Daniel Carvajal

Results 167 comments of Daniel Carvajal

@DmitryDronovDre I got your file " MKM_HdM_EP_100_GR_G00_x_x_01_Grundriss.dxf" and you need to update the library using the latest source code. It seems that the problem you have loading the file is...

Both SHX and TTF fonts stores vector data information from which you can, from every single character (glyph), build words, sentences, paragraphs,... and get its measurements; but you will need...

I do not see any problems. You have an Insert that references a block that contains two more inserts that references two other blocks. What you are building is a...

Use the Release build, make sure that in the Build tab of the project properties the "Define Debug constant" is unchecked. Also you can open the netDxf.csproj file and make...

You are using AutoCad, aren't you? You must regenerate your drawing, "regen" command.

Yes, the the purpose of this library is being able to create, modify, and read DXF files. You just need to load your file, remove the entity, and save it...

I cannot tell you how to find a particular entity in the drawing you must know how to find it. You will have to decide if it has a particular...

About why the dimensions does not appear when embedded into a block, read this #342, you can also read #98 about other issues with dimensions inside blocks. About why the...

The drawing entities in a DXF are ordered by Layout, therefore if you want to access the entities list as they were created use: ```c# DxfDocument doc = DxfDocument.Load(@"sample.dxf"); foreach...

They are in the order as they appear in the DXF section ENTITIES, and there your TEXT appear before the HATCH. I guess you have been using the Draw Order...