Spaces --> tabs

This commit is contained in:
Nigel Barber 2018-04-17 22:56:44 +01:00
parent 2d4a80b6a3
commit 5a8ff41ca3
3 changed files with 5 additions and 5 deletions

View file

@ -126,7 +126,7 @@ enum TessElementType
enum TessOption
{
TESS_CONSTRAINED_DELAUNAY_TRIANGULATION,
TESS_REVERSE_CONTOURS
TESS_REVERSE_CONTOURS
};
typedef float TESSreal;

View file

@ -987,9 +987,9 @@ void tessSetOption( TESStesselator *tess, int option, int value )
case TESS_CONSTRAINED_DELAUNAY_TRIANGULATION:
tess->processCDT = value > 0 ? 1 : 0;
break;
case TESS_REVERSE_CONTOURS:
tess->reverseContours = value > 0 ? 1 : 0;
break;
case TESS_REVERSE_CONTOURS:
tess->reverseContours = value > 0 ? 1 : 0;
break;
}
}

View file

@ -62,7 +62,7 @@ struct TESStesselator {
TESSreal bmax[2];
int processCDT; /* option to run Constrained Delayney pass. */
int reverseContours; /* tessAddContour() will treat CCW contours as CW and vice versa */
int reverseContours; /* tessAddContour() will treat CCW contours as CW and vice versa */
/*** state needed for the line sweep ***/
int windingRule; /* rule for determining polygon interior */