MathGroup Archive 2003

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

Search the Archive

RE: plot1 and plot2

  • To: mathgroup at smc.vnet.net
  • Subject: [mg42323] RE: [mg42308] plot1 and plot2
  • From: David Turner <dturner at faulkner.edu>
  • Date: Tue, 1 Jul 2003 08:45:33 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

Nakhova,

Try

Needs["ExtendGraphics`SurfaceGraphics3D`"]
data1={{0.0,0.0,0.0},{1.0,0.0,1.0},{2.0,0.0,2.0},{3.0,3.0,3.0}};
data2={{0.0,0.0,0.0},{1.0,2.0,1.0},{2.0,3.0,2.0},{3.0,3.0,3.0}};
plot1=ListSurfacePlot3D[data1];
plot2=ListSurfacePlot3D[data2];
Show[Graphics3D[plot1], Graphics3D[plot2]];

Regards,

David

-----Original Message-----
From: Nakhova Irina
To: mathgroup at smc.vnet.net
Subject: [mg42323] [mg42308] plot1 and plot2

Hi,
I need to show plot1 and plot2, which were built by the following way :
Needs["ExtendGraphics`SurfaceGraphics3D`"]
data1={{0.0,0.0,0.0},{1.0,0.0,1.0},{2.0,0.0,2.0},{3.0,3.0,3.0}};
data2={{0.0,0.0,0.0},{1.0,2.0,1.0},{2.0,3.0,2.0},{3.0,3.0,3.0}};
plot1=ListSurfacePlot3D[data1]
plot2=ListSurfacePlot3D[data2]
on one picture, but the command Show[plot1,plot2] does not help. Could
you
help me with this problem, please? 
Irina
 


  • Prev by Date: Why can't NIntegrate integrate this well-behaved function?
  • Next by Date: Re: Plotting 3D points on 2D-contour plots with colors indicating z values
  • Previous by thread: RE: plot1 and plot2
  • Next by thread: Re: plot1 and plot2