MathGroup Archive 2010

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

Search the Archive

Re: embedding 2D graphic

  • To: mathgroup at smc.vnet.net
  • Subject: [mg111986] Re: embedding 2D graphic
  • From: "David Park" <djmpark at comcast.net>
  • Date: Mon, 23 Aug 2010 02:39:27 -0400 (EDT)

Easy with Presentations. The following draws a Sin curve in the 3D xy-plane.

Needs["Presentations`Master`"] 

Draw3DItems[{Draw[Sin[x], {x, 0, 2 \[Pi]}] // RaiseTo3D[0 &]},
 NiceRotation] 

The following places a 2D contour plot in the xy-plane.

Draw3DItems[
 {ContourDraw[Sin[x y], {x, 0, \[Pi]/2}, {y, 0, \[Pi]/2},
    ColorFunction -> ColorData["BrownCyanTones"]] // RaiseTo3D[0 &]},
 NiceRotation,
 Lighting -> "Neutral"] 

It is also possible to raise a 2D plot to a curved surface.


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


From: David Turner [mailto:DTurner at faulkner.edu] 


Hello,

I have a 2D graphic that I wish to place on the xy-plane and display in a
3D-coordinate system.  I've tried using Import but with no success.

Any ideas?

Thanks,

David

~~~~~~~~~~~~~~~~~~~~~~~
David Turner, Ph.D.
Professor of Mathematics
Faulkner University
5345 Atlanta Highway
Montgomery, AL 36109
(334) 386-7163
dturner at faulkner.edu<mailto:dturner at faulkner.edu>
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

This email and any files transmitted with it are confidential and intended
solely for the use of the individual or entity to whom they are addressed.
This message contains confidential information and is intended only for the
individual named. If you are not the named addressee you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately by e-mail if you have received this e-mail by mistake and delete
this e-mail from your system. If you are not the intended recipient you are
notified that disclosing, copying, distributing or taking any action in
reliance on the contents of this information is strictly prohibited.




  • Prev by Date: Re: referencing auto-numbered cell
  • Next by Date: Re: embedding 2D graphic
  • Previous by thread: embedding 2D graphic
  • Next by thread: Re: embedding 2D graphic