func scrollViewDidScroll()

in application/PhotoToSketch/PhotoToSketch/EffectApplyScreen/EffectApplyViewController.swift [127:134]


	func scrollViewDidScroll(_ scrollView: UIScrollView) {
		if(scrollView == rulerSliderCollectionView){
			let intensity = Int(scrollView.contentOffset.x / 85.0 * 10)
			self.maskingIntensity = CGFloat(intensity) / CGFloat(100)
			intensityLabel.text = "Intensity" + " " + "%" + intensity.description
			setMaskingIntensity(to: self.maskingIntensity)
		}
	}