-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added basic Hatch support #45
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome addition to the parser! Just needs a couple minor changes I think and then we are good to go. Thanks for the work on this!
}); | ||
|
||
it('should parse HATCH', function() { | ||
verifyDxf |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new way to do this would be to just call verifyDxf(path.join(__dirname, 'data', 'hatch.dxf'));
and the result will be suffixed with .received.json
instead of .actual.json
.
// case 92: // Number of bytes in the proxy entity graphics represented in the subsequent 310 groups, which are binary chunk records (optional) | ||
// This one is from common entity propierties | ||
case 93: | ||
var boundryVerticeCount = curr.value; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should this be boundaryVertexCount
.
Is there any update on this? It seems like only very minor changes to make it into master. |
No description provided.