plotcube.pro
5.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
;+
; NAME:
; PLOTCUBE
;
; AUTHOR:
; Craig B. Markwardt, NASA/GSFC Code 662, Greenbelt, MD 20770
; craigm@lheamail.gsfc.nasa.gov
;
; PURPOSE:
; Plots a three dimensional data that can be printed and made into a cube
;
; CALLING SEQUENCE:
; PLOTCUBE, x, y, z
;
; DESCRIPTION:
;
; PLOTCUBE plots a three dimensional data set so that it can be
; printed on paper, cut out, and folded together to make a real-life
; three dimensional cube. This may be useful in visualization
; applications. The six faces of the cube contain a projection of
; the data onto that face.
;
; The output consists of a flat matrix of six plots, which are
; joined together at the proper edges of the cube. Your task,
; should you choose to accept it, is to cut out the cube and
; assemble it.
;
; Before folding the cube together, it will look like the diagram
; below. You need to match together edges labelled with the same
; letter.
;
; A
; +----+
; B| |G
; B | | G
; +----+----+----+
; | | | |
; C| | | |E
; +----+----+----+
; D | | F
; D| |F
; +----+
; | |
; C| |E
; +----+
; A
;
; HINT 1: When printing, be sure that the XSIZE and YSIZE are given
; in the ratio of 3 to 4. A size of 6 in by 8 in is
; suitable.
;
; HINT 2: As a practical matter for assembling the cube once it has
; been printed, you should leave some extra paper tabs so
; that adhesive can be applied.
;
; INPUTS:
;
; X, Y, Z - Three arrays which specify position in three dimensional
; space. All three arrays should be of the same length.
;
; OPTIONAL INPUTS:
; NONE
;
; INPUT KEYWORD PARAMETERS:
;
; PANEL, SUBPANEL - An alternate way to more precisely specify the
; plot and annotation positions. See SUBCELL.
; Default is full-screen.
;
; XRANGE, YRANGE, ZRANGE - gives plot range for each dimension, as
; for other plot commands. Default is
; range of data.
;
; XTITLE, YTITLE, ZTITLE - gives title for each axis. The title
; labels each face of the cube where
; possible.
;
; NOERASE - If set, the display is not erased before graphics
; operations.
;
; Other options are passed along to the PLOT command directly.
;
; OUTPUTS:
; NONE
;
; PROCEDURE:
;
; EXAMPLE:
;
; This example takes some synthetic data and makes a cube out of it.
; Visualizing the trace of the curve is more convenient when it can
; be projected on the cube in each dimension.
;
; t = findgen(200)/20. - 10.
; x = cos(t)
; y = sin(t) + 0.05*t
; z = exp(t) + 0.05*randomn(seed, 200)
; plotcube, x, y, z, xrange=[-1.5,1.5], yrange=[-1.5,1.5], zrange=[-1.5,1.5]
;
; SEE ALSO:
;
; DEFSUBCELL, SUBCELLARRAY
;
; EXTERNAL SUBROUTINES:
;
; SUBCELL, DEFSUBCELL, PLOTPAN
;
; MODIFICATION HISTORY:
; Written, CM, 1997
; Modified to include SUBCELL, DEFSUBCELL and PLOTPAN when
; distributed, CM, late 1999
;
; $Id: plotcube.pro,v 1.2 2001/03/25 18:10:44 craigm Exp $
;
;-
; Copyright (C) 1997-2000, Craig Markwardt
; This software is provided as is without any warranty whatsoever.
; Permission to use, copy, modify, and distribute modified or
; unmodified copies is granted, provided this copyright and disclaimer
; are included unchanged.
;-
;%insert HERE
;%include subcell.pro
;%include defsubcell.pro
;%include plotpan.pro
pro plotcube, x, y, z, $
xrange=xrange, yrange=yrange, zrange=zrange, $
xtitle=xtitle, ytitle=ytitle, ztitle=ztitle, $
panel=panel, subpanel=subpanel, $
noerase=noerase, $
_EXTRA=extra
;; Default is full-panel
if n_elements(panel) EQ 0 then panel=[0.0,0.0,1.0,1.0]
if n_elements(subpanel) EQ 0 then subpanel=[-1.,-1,-1,-1]
if n_elements(noerase) EQ 0 then noerase=0
if n_elements(xrange) EQ 0 then xrange = [ min(x), max(x) ]
if n_elements(yrange) EQ 0 then yrange = [ min(y), max(y) ]
if n_elements(zrange) EQ 0 then zrange = [ min(z), max(z) ]
if n_elements(xtitle) EQ 0 then xtitle = 'X'
if n_elements(ytitle) EQ 0 then ytitle = 'Y'
if n_elements(ztitle) EQ 0 then ztitle = 'Z'
subcellarray, [1,1,1], [1,1,1,1], newpan, newsub, $
panel=panel, subpanel=subpanel
plotpan, x, z, /xstyle, /ystyle, noerase=noerase, $
xtickformat='(A1)', ytitle=ztitle, $
xrange=xrange, yrange=zrange, $
panel=newpan(1,3,*), subpanel=newsub(1,3,*), _EXTRA=extra
plotpan, z, y, /xstyle, /ystyle, /noerase, $
xtitle=ztitle, ytitle=ytitle, $
xrange=[zrange(1),zrange(0)], yrange=yrange, $
panel=newpan(0,2,*), subpanel=newsub(0,2,*), _EXTRA=extra
plotpan, x, y, /xstyle, /ystyle, /noerase, $
xtickformat='(A1)', ytickformat='(A1)', $
xrange=xrange, yrange=yrange, $
panel=newpan(1,2,*), subpanel=newsub(1,2,*), _EXTRA=extra
plotpan, z, y, /xstyle, /ystyle, /noerase, $
ytickformat='(A1)', xtitle=ztitle, $
xrange=zrange, yrange=yrange, $
panel=newpan(2,2,*), subpanel=newsub(2,2,*), _EXTRA=extra
plotpan, x, z, /xstyle, /ystyle, /noerase, $
xtickformat='(A1)', ytitle=ztitle, $
xrange=xrange, yrange=[zrange(1),zrange(0)], $
panel=newpan(1,1,*), subpanel=newsub(1,1,*), _EXTRA=extra
plotpan, x, y, /xstyle, /ystyle, /noerase, $
xtitle=xtitle, ytitle=ytitle, $
xrange=xrange, yrange=[yrange(1), yrange(0)], $
panel=newpan(1,0,*), subpanel=newsub(1,0,*), _EXTRA=extra
return
end