MathGroup Archive 2009

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: problems with using graphics objects in arrowheads

  • To: mathgroup at smc.vnet.net
  • Subject: [mg101449] Re: [mg101435] problems with using graphics objects in arrowheads
  • From: "David Park" <djmpark at comcast.net>
  • Date: Wed, 8 Jul 2009 07:06:15 -0400 (EDT)
  • References: <4921008.1246958483618.JavaMail.root@n11>

They are just using tree as an exotic example of an arrowhead. The Head of
tree is Graphics. You can create any other Graphics object. For example:

circle = ParametricPlot[{Cos[u], Sin[u]}, {u, 0, 2 \[Pi]}, 
   Axes -> None];

Graphics3D[{Arrowheads[{{.1, 1, circle}}, Appearance -> "Projected"], 
  Arrow[{{0, 0, 0}, {0, -0, 0.001}}], Green, 
  Cuboid[{-10, -10, -3}, {10, 10, -2.8}]},
 SphericalRegion -> True, RotationAction -> "Clip"]


David Park
djmpark at comcast.net
http://home.comcast.net/~djmpark/  


From: Jim [mailto:jodwyer at uoregon.edu] 

Hi Forum

I am trying to use the following command:

Graphics3D[{Arrowheads[{{.1, 1, tree}}, Appearance -> "Projected"], 
  Arrow[{{0, 0, 0}, {0, -0, 0.001}}], Green, 
  Cuboid[{-10, -10, -3}, {10, 10, -2.8}]}]

This is taken straight out of the arrowheads help section in mathematica
help, and tree here is a graphics object that is inputted before this
graphics command.

So, this command works fine. But the problem occurs if I try to use a
different graphics object, other than the tree they provide in the example.
I can't get any other graphics object to work here! Will it only work with a
very particular kind of object?

Hope someone can help.




  • Prev by Date: Re: AbsoluteOptions for BarChart
  • Next by Date: Re: Jens-Peer Kuska passed away
  • Previous by thread: problems with using graphics objects in arrowheads
  • Next by thread: Re: problems with using graphics objects in arrowheads