This repository was archived by the owner on Jan 27, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 4
4
5
5
### Introduction
6
6
This is one of many DXF librarys that is avalible here on Github. It can be used currently to extract and read information from
7
- a dxf file. One of the main focuses however besides being able to read and write a file is to be able to calculate all of the geometry
8
- of the entities in the file. Also, this library is designed to be flexible, in other words if a property is changed in an entity all the
9
- geometry will be updated along will the geometry of all entities that are linking to the object .
7
+ a dxf file. One of the main focuses however besides being able to read ( and maybe one day write) a file is to be able to calculate all of the geometry
8
+ of the entities in the file. Also, this library is designed to be flexible in other words if a property is changed in any entity all the
9
+ geometry will be updated along will the geometry of all entities that are linking to that Entity .
10
10
11
11
#### Goals of this Library
12
- - read and write all of the entities in the Dxf format
12
+ - read (one day write) all of the entities in the Dxf format
13
13
- flexible geometry based entities that can be updated real time without writing and re reading the file.
14
14
- Speed, this library should be really fast.
15
15
@@ -59,12 +59,14 @@ lines[0].Vertex = new Vertex(0, 1); // GeometryChanged Event will be called at t
59
59
60
60
### Currently Supported Entities
61
61
- LINE
62
- - LWPOLYLINE
62
+ - LWPOLYLINE (Light weight Polyline)
63
63
- HATCH
64
64
- ARC
65
+ - CIRCLE
66
+ - POINT
67
+ - TEXT
68
+ - MTEXT
65
69
66
70
### Future Development
67
71
Future development includes adding these other entities (in order of importance):
68
- - TEXT
69
- - MTEXT
70
72
- POLYLINE
You can’t perform that action at this time.
0 commit comments