Skip to content

Commit

Permalink
Show empty triangles in pink.
Browse files Browse the repository at this point in the history
  • Loading branch information
speps committed Mar 27, 2018
1 parent edba6a7 commit 5b0dee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TessBed/Canvas.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ protected override void OnPaint(PaintEventArgs pe)
using (var brushPoint = new SolidBrush(Color.FromArgb(255, 0, 0, 0)))
using (var penOutput = new Pen(Color.FromArgb(32, 0, 0, 0), 1.0f))
using (var penPolys = new Pen(Color.FromArgb(64, 0, 0, 0), 1.0f))
using (var penZeroArea = new Pen(Color.FromArgb(255, 255, 0, 0), 1.0f))
using (var penZeroArea = new Pen(Color.FromArgb(255, 255, 0, 255), 2.0f))
using (var brushPolys = new SolidBrush(Color.FromArgb(64, 255, 207, 130)))
{
penWinding.EndCap = LineCap.ArrowAnchor;
Expand Down

0 comments on commit 5b0dee6

Please sign in to comment.