Skip to content

Commit

Permalink
Add bulge property to parseVertex
Browse files Browse the repository at this point in the history
I noticed the parseVertex function ignores the bulge geometry, I coppied over parseLWPolylineVertices implemetation.
  • Loading branch information
iceblu3710 committed Jun 23, 2017
1 parent a131be1 commit 9cf939d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/DxfParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -762,6 +762,7 @@ DxfParser.prototype._parse = function(dxfString) {
case 40: // start width
case 41: // end width
case 42: // bulge
if(curr.value != 0) entity.bulge = curr.value;
curr = scanner.next();
break;
case 70: // flags
Expand Down

0 comments on commit 9cf939d

Please sign in to comment.