Skip to content

Commit

Permalink
Merge branch 'trubit-vertex-faces'
Browse files Browse the repository at this point in the history
  • Loading branch information
bzuillsmith committed Feb 14, 2019
2 parents 14d913b + d5d6998 commit 8a4ca84
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/entities/vertex.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,16 @@ EntityParser.prototype.parseEntity = function(scanner, curr) {
break;
case 50: // curve fit tangent direction
case 71: // polyface mesh vertex index
entity.faceA = curr.value;
break;
case 72: // polyface mesh vertex index
entity.faceB = curr.value;
break;
case 73: // polyface mesh vertex index
entity.faceC = curr.value;
break;
case 74: // polyface mesh vertex index
entity.faceD = curr.value;
break;
default:
helpers.checkCommonEntityProperties(entity, curr);
Expand Down

0 comments on commit 8a4ca84

Please sign in to comment.