Re: Show Rotate doesn't work
- To: mathgroup at smc.vnet.net
- Subject: [mg117019] Re: Show Rotate doesn't work
- From: "Sjoerd C. de Vries" <sjoerd.c.devries at gmail.com>
- Date: Tue, 8 Mar 2011 05:32:38 -0500 (EST)
- References: <il2dc9$678$1@smc.vnet.net>
Combination doesn't work because Rotate doesn't return a Graphics
object.
Perhaps rasterization is sufficient for you?
ImageCompose[ Rasterize[s1], {Rasterize[s2], 0.5}]
Cheers -- Sjoerd
On Mar 7, 11:51 am, sasa <neprihvatlj... at gmail.com> wrote:
> 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.