Updated comments

This commit is contained in:
Andrew Murray 2018-12-05 18:19:00 +11:00
parent 2f28a01fe7
commit ad26f53bf6

View File

@ -168,7 +168,7 @@ def isImageType(t):
# #
# Constants (also defined in _imagingmodule.c!) # Constants
NONE = 0 NONE = 0
@ -181,14 +181,14 @@ ROTATE_270 = 4
TRANSPOSE = 5 TRANSPOSE = 5
TRANSVERSE = 6 TRANSVERSE = 6
# transforms # transforms (also defined in Imaging.h)
AFFINE = 0 AFFINE = 0
EXTENT = 1 EXTENT = 1
PERSPECTIVE = 2 PERSPECTIVE = 2
QUAD = 3 QUAD = 3
MESH = 4 MESH = 4
# resampling filters # resampling filters (also defined in Imaging.h)
NEAREST = NONE = 0 NEAREST = NONE = 0
BOX = 4 BOX = 4
BILINEAR = LINEAR = 2 BILINEAR = LINEAR = 2