help with rotated graphic
- To: mathgroup at smc.vnet.net
- Subject: [mg117036] help with rotated graphic
- From: Sasa B <neprihvatljivo at gmail.com>
- Date: Tue, 8 Mar 2011 05:35:54 -0500 (EST)
Hi everyone.
I'm trying to combine two or more graphics on the same plot. Problem is that
some of them has to be 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, maybe using something other than Show[].
Thanks in advance.