I was looking at this repo
https://github.com/mmohsin991/gestures/blob/master/gestures/ViewController.swift
and this example
http://www.raywenderlich.com/50398/opengl-es-transformations-gestures
I have the following code
@IBOutlet var pinchProperty: UIPinchGestureRecognizer!
@IBAction func pinchAction(sender: UIPinchGestureRecognizer) {
if(dbg){println("scale \(pinchProperty.scale)")}
let pinch: CGFloat = pinchProperty.scale
switch pinchProperty.state{
case .Began:
println("pinch started")
case .Changed:
geometryNodeMain.scale = SCNVector3(x:Float(pinch),y:Float(pinch),z:Float(pinch))
case .Ended:
println("pinch ended")
case .Cancelled:
break
case .Failed:
break
case .Possible:
break
default:
break
}
}
Initially, the pinch works and zooms in and out but then the scale resets to 1. Converting the openGL code http://www.raywenderlich.com/50398/opengl-es-transformations-gestures is messy.
Can someone help convert this code?