Albert Domenech

Results 91 comments of Albert Domenech

Hi @xiuweihan In a repo you usually don't upload the compiled files, only the code, if you want them you can extract them form the Nuget Package https://www.nuget.org/packages/ACadSharp/2.1.0-beta or just...

Hi @Nico3201975 This particular issue was resolved, the file could be opened in Autocad with no major issue, if you are referring to the size, this is a work in...

That notification usually appears for a badly written entity or object, after pressing recover Autocad usually prompts a log with what has been fixed and which entities or objects have...

I've tested your file, this is the code that I'm using: ```C# CadDocument doc = DwgReader.Read(test, this._dwgConfiguration, this.onNotification); doc.SummaryInfo.Comments = "HELLO THIS IS MY COMMENT"; DwgWriter.Write(path, doc, this.onNotification); ``` I'm...

![image](https://github.com/DomCR/ACadSharp/assets/46492487/685f8a95-dd18-48ce-b24a-a6023b9ce273) another test with more data, the Hyperlink hasn't been saved though.

Thanks a lot for the resource!

> ### Location, Rotation > We decided to implement one `Location` property for both, and one `Rotation` property for both. > I don't think is a good solution for the...

Hi @cpetry, could you provide a file with this kind of specific objects in it that I can use as an example for the implementation? I don't find them in...

I've been looking into this and there are a few problems that makes the implementation quite difficult. This type of objects are not compatible with dxf which means that I...