Replace mod_() calls with mod()
This commit is contained in:
@@ -14,7 +14,7 @@ fun main() {
|
||||
|
||||
extend {
|
||||
|
||||
duotone.labInterpolation = seconds.mod_(2.0) < 1.0
|
||||
duotone.labInterpolation = seconds.mod(2.0) < 1.0
|
||||
duotone.apply(image, filteredImage)
|
||||
drawer.image(filteredImage)
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ fun main() {
|
||||
lumaHalftone.phase0 = seconds*0.1
|
||||
lumaHalftone.phase1 = -seconds*0.1
|
||||
lumaHalftone.apply(image, filteredImage)
|
||||
lumaHalftone.invert = seconds.mod_(2.0) < 1.0
|
||||
lumaHalftone.invert = seconds.mod(2.0) < 1.0
|
||||
drawer.image(filteredImage)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user