Show Rotate doesn't work
- To: mathgroup at smc.vnet.net
 - Subject: [mg117014] Show Rotate doesn't work
 - From: sasa <neprihvatljivo at gmail.com>
 - Date: Mon, 7 Mar 2011 05:50:18 -0500 (EST)
 
Hi everyone.
I'm trying to combine two or more plots of which are some translated and rotated. Simple example:
s1 = Rotate[Plot[Sin[x], {x, 0, 10}], 45];
s2 = Plot[Sin[x], {x, 0, 10}];
Show[s1, s2]
It doesn't work. It seems that after applying Rotate to Graphics it can not be combined with other Graphics?
Any solutions, using somthing other than Show[].
Thanks in advance.