Re: Help
- To: mathgroup at smc.vnet.net
- Subject: [mg132748] Re: Help
- From: "djmpark" <djmpark at comcast.net>
- Date: Thu, 22 May 2014 02:31:07 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-outx@smc.vnet.net
- Delivered-to: mathgroup-newsendx@smc.vnet.net
- References: <3495465.197342.1400660649100.JavaMail.root@m03>
Here is a simple way outside of ListPointPlot3D: Graphics3D[ {PointSize[0.04], MapThread[ Tooltip[Point[#1], #2] &, {{{1, 1, 1}, {2, 2, 2}}, {"a", "b"}}]}, PlotRangePadding -> 1, Axes -> True ] David Park djmpark at comcast.net http://home.comcast.net/~djmpark/index.html From: reiser.paul at gmail.com [mailto:reiser.paul at gmail.com] I want to plot 2 points {1,1,1} and {2,2,2} using ListPointPlot3D and Tooltip, labelling each point "a" and "b" respectively. ListPointPlot3D[Tooltip[{{1, 1, 1}, {2, 2, 2}}, {"a", "b"}]] doesn't seem to work (it displays "{a,b}" at both points) Thanks for any help...