Hi In objective-c we can use this, to concat 1 or more transformations to a view :
CGAffineTransform rotate = CGAffineTransformMakeRotation(3.14); CGAffineTransform translate = CGAffineTransformMakeTranslation(10.0, 10.0); CGAffineTransform transfom = CGAffineTransformConcat(rotate, translate); myImageView.transform = transform; But I did not succed in finding the "concat" method in the MonoTouch implementation ... am i doing something wrong or how would one accomplish the above in MT ? Please help me solve this ... hope its just me beeing blind or something ;-) Take care, Kent Fonager, Netcoders ApS -- View this message in context: http://monotouch.2284126.n4.nabble.com/Add-multiple-transformations-to-a-UIView-tp3944674p3944674.html Sent from the MonoTouch mailing list archive at Nabble.com. _______________________________________________ MonoTouch mailing list [email protected] http://lists.ximian.com/mailman/listinfo/monotouch
