I want to make a slightly-more-than-basic ebook reader. I can simulate a page turning using a rotation around the left x origin of the page. This works, but unlike paper, the page doesn't "bend" - it looks like its printed on metal! Is there any way to animate more realistic "paper" behaviour where the right hand side bends "faster" than the left hand side of the page. Effectively I want to put a "curve" into the Text object I apply this too.
This is the "metal" animation
Code:transform: Rotation { origin.x: mainRec.width; origin.y: mainRec.height/2; axis {x:0; y:1; z:0} angle:0 NumberAnimation on angle { from: 0; to: -90; duration: 1000; loops: Animation.Infinite } }




