Remove some debug print statements
This commit is contained in:
+1
-2
@@ -167,7 +167,7 @@ def colRange(rgbStart, rgbEnd, nStep):
|
|||||||
cA = rgbStart[c]
|
cA = rgbStart[c]
|
||||||
cB = rgbEnd[c]
|
cB = rgbEnd[c]
|
||||||
dC[c] = (cB-cA)/(nStep-1)
|
dC[c] = (cB-cA)/(nStep-1)
|
||||||
print(dC)
|
|
||||||
retCol = [rgbStart]
|
retCol = [rgbStart]
|
||||||
for n in range(nStep):
|
for n in range(nStep):
|
||||||
if n > 0 and n < nStep:
|
if n > 0 and n < nStep:
|
||||||
@@ -177,7 +177,6 @@ def colRange(rgbStart, rgbEnd, nStep):
|
|||||||
int(retCol[n-1][2] + dC[2]),
|
int(retCol[n-1][2] + dC[2]),
|
||||||
])
|
])
|
||||||
retCol[-1] = rgbEnd
|
retCol[-1] = rgbEnd
|
||||||
print(retCol)
|
|
||||||
|
|
||||||
return retCol
|
return retCol
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user