haplokuon / netDxf

.net dxf Reader-Writer
MIT License
966 stars 393 forks source link

Finding the Center of a Circle #461

Closed Kimjs007 closed 1 year ago

Kimjs007 commented 1 year ago

111 22222 33333 4444

How can I access it from code in C#?

I want to put the X,Y center coordinates in the declared variable

DavidWishengrad commented 1 year ago

The easiest one is take the time to review the netDXF project. In it you will find many samples of accessing the properties of objects with different methods. Whichever one a person uses depends on them. You are sitting on a treasure trove of information and examples.

Kimjs007 commented 1 year ago

I've been looking for examples, but I can't find any part of the C# code that accesses an entity and stores the circle's center point in a local variable.

Help me