Docs: scanfill.c purpose

This commit is contained in:
Campbell Barton
2016-05-06 00:37:31 +10:00
parent c8e9832be3
commit bb6fbc64ae

View File

@@ -28,6 +28,15 @@
/** \file blender/blenlib/intern/scanfill.c
* \ingroup bli
*
* Triangulate multiple 2D/3D polygon with support for holes,
* use for tessellating curves, fonts and geometry.
* See main function #BLI_scanfill_calc
*
* Uses sweep-line method.
*
* \note There is a similar API in polyfill2d.c
* which uses ear clipping, but has no hole support.
*/
#include <stdio.h>