Re: ListPointPlot3D - how to join points
- To: mathgroup at smc.vnet.net
- Subject: [mg105348] Re: ListPointPlot3D - how to join points
- From: DC <b.gatessucks at gmail.com>
- Date: Sun, 29 Nov 2009 05:09:21 -0500 (EST)
- References: <heqepe$1hg$1@smc.vnet.net>
Would the following help ? Graphics3D[Line[my3Dtable]] -Francesco On 11/28/2009 06:08 AM, Serych Jakub wrote: > Dear community, > I need to draw 3D curve from the points in the table, something what in 2D > is very simply realizable by ListPlot with use of the Joined and InterpolationOrder options. But ListPlot3D function is drawing curved plains to me and I cannot join the points in ListPointPlot3D function. > Does anybody know, how to do it? Here are some simple test data to let you see what I'm talking about: > > my2Dtable = {{0, 0}, {1, 1}, {2, 1}, {3, 2}, {4, 5}, {5, 8}, {6, 5}, {7, 4}}; > ListPlot[my2Dtable, Joined -> True, InterpolationOrder -> 2] > my3Dtable = {{0, 0, 0}, {1, 1, 1}, {2, 1, 2}, {3, 4, 3}, {5, 6, 4}, {3, 4, 5}, {2, 1, 6}, {7, 7, 7}}; > ListPointPlot3D[my3Dtable] > ListPlot3D[my3Dtable] > > Thanks in advance for any help > > Jakub >