@dxfjs/parser
v0.3.2
Published
dxf parser
Downloads
57
Readme
parser
A dxf parser it parse dxf content to a readable javascript object.
Installation
pnpm add @dxfjs/parser
Get started
const { Parser } = require('@dxfjs/parser')
const content = '...' // The dxf content
const parser = new Parser()
parser
.parse(content)
.then((obj) => {
console.log(obj)
// ...
})
.catch((error) => console.error(error))
Progress
[x] Parse
HEADER
section.[x] Parse
CLASSES
section.[x] Parse
TABLES
section.[x] Parse
BLOCKS
section.[x] Parse
ENTITIES
section.- [x] 3DFACE
- [x] 3DSOLID
- [x] ARC
- [x] CIRCLE
- [x] ELLIPSE
- [ ] HATCH
- [x] INSERT
- [x] LINE
- [x] LWPOLYLINE
- [x] POINT
- [x] POLYLINE
- [x] SOLID
- [x] SPLINE
- [x] TEXT
[ ] Parse
OBJECTS
section.