Skip to content

Commit

Permalink
fixed rendering of angle indicators
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed Feb 7, 2016
1 parent 8ac06b2 commit aaffee3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/render/Render.js
Original file line number Diff line number Diff line change
Expand Up @@ -715,11 +715,13 @@ var Vector = require('../geometry/Vector');
if (options.wireframes) {
c.strokeStyle = 'indianred';
} else {
c.strokeStyle = 'rgba(0,0,0,0.3)';
c.strokeStyle = 'rgba(0,0,0,0.8)';
c.globalCompositeOperation = 'overlay';
}

c.lineWidth = 1;
c.stroke();
c.globalCompositeOperation = 'source-over';
};

/**
Expand Down

0 comments on commit aaffee3

Please sign in to comment.