use constant instead of value backported from #785

pull/3963/head
Dikay900 10 years ago
parent 1bf4427a5c
commit c797746b6e
  1. 2
      samples/cpp/delaunay2.cpp

@ -98,7 +98,7 @@ static void paint_voronoi( Mat& img, Subdiv2D& subdiv )
ifacets[0] = ifacet;
polylines(img, ifacets, true, Scalar(), 1, CV_AA, 0);
circle(img, centers[i], 3, Scalar(), -1, CV_AA, 0);
circle(img, centers[i], 3, Scalar(), CV_FILLED, CV_AA, 0);
}
}

Loading…
Cancel
Save