Re: Re: Rotate
- To: mathgroup at smc.vnet.net
- Subject: [mg106448] Re: [mg106408] Re: [mg106393] Rotate
- From: Jaebum Jung <jaebum at wolfram.com>
- Date: Wed, 13 Jan 2010 05:56:32 -0500 (EST)
- References: <23095497.1263206423571.JavaMail.root@n11> <201001112353.SAA21050@smc.vnet.net>
or just use Labeled
Labeled[Rotate[GraphData@{"CompleteTripartite",{2,3,5}},-\[Pi]/2],"hi",Top]
or label first and then rotate
Show[GraphData@{"CompleteTripartite",{2,3,5}},PlotLabel->"hi"]/.GraphicsComplex[data__]:>Rotate[GraphicsComplex[data],-Pi/2]
- Jaebum
On 1/11/10 5:53 PM, David Park wrote:
> Needs["Presentations`Master`"]
>
> mygraph = GraphData[{"CompleteTripartite", {2, 3, 5}}]
>
> Draw2D[
> {mygraph // DrawGraphics // RotateOp[-\[Pi]/2]},
> PlotLabel -> "hi"]
>
>
> David Park
> djmpark at comcast.net
> http://home.comcast.net/~djmpark/
>
>
> From: Bruce Colletti [mailto:bwcolletti at verizon.net]
>
>
> Re 7.0.1 under WinXP.
>
> Rotating the result of GraphData is easy, but how to title it?
>
> I haven't found a helptext example but guided by those found, my attempt
> below yields the message "Graphics is not a Graphics primitive or
> directive."
>
> Thanks.
>
> Bruce
>
> Graphics[Rotate[
> GraphData@{"CompleteTripartite", {2, 3, 5}}, -\[Pi]/2],
> PlotLabel -> "hi"]
>
>
>
>
>
>
- References:
- Re: Rotate
- From: "David Park" <djmpark@comcast.net>
- Re: Rotate