-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathComplexContourPlot.java
More file actions
196 lines (176 loc) · 5.34 KB
/
ComplexContourPlot.java
File metadata and controls
196 lines (176 loc) · 5.34 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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
* Open Source Physics software is free software as described near the bottom of this code file.
*
* For additional information and documentation on Open Source Physics please see:
* <http://www.opensourcephysics.org/>
*/
package org.opensourcephysics.display2d;
import java.awt.Color;
import java.awt.Graphics;
import javax.swing.JFrame;
import org.opensourcephysics.display.DrawingPanel;
/**
* ComplexInterpolatedPlot creates an image of a scalar field by inerpolating every
* image pixel to an untabulated point (x,y) in the 2d data. This interpolation smooths
* the resulting image.
*
* @author Wolfgang Christian
* @created February 2, 2003
* @version 1.0
*/
public class ComplexContourPlot extends ComplexInterpolatedPlot {
ContourPlot contour;
boolean showContours = true;
/**
* Constructs the ComplexContourPlot using the given 2d datset.
*/
public ComplexContourPlot() {
super(null);
}
/**
* Constructs the ComplexContourPlot using the given 2d datset.
*
* @param griddata GridData
*/
public ComplexContourPlot(GridData griddata) {
super(griddata);
contour = new ContourPlot(griddata);
contour.setPaletteType(ColorMapper.WIREFRAME);
contour.setShowColorLevels(false);
contour.setGridLineColor(Color.lightGray);
contour.update();
}
public ContourPlot getContour() {
return contour;
}
/**
* Sets the autoscale flag and the floor and ceiling values for the colors.
*
* If autoscaling is true, then the min and max values of z are span the colors.
*
* If autoscaling is false, then floor and ceiling values limit the colors.
* Values below min map to the first color; values above max map to the last color.
*
* @param isAutoscale
* @param floor
* @param ceil
*/
public void setAutoscaleZ(boolean isAutoscale, double floor, double ceil) {
super.setAutoscaleZ(isAutoscale, ceil);
contour.setAutoscaleZ(isAutoscale, floor, ceil);
}
/**
* Updates the buffered image using the data array.
*/
public void update() {
super.update();
if((contour!=null)&&showContours) {
contour.update();
}
}
/**
* Sets the data storage to the given value.
*
* @param griddata
*/
public void setGridData(GridData griddata) {
super.setGridData(griddata);
super.setShowGridLines(false);
contour.setGridData(griddata);
}
/**
* Sets the indexes for the data component that will be plotted.
*
* @param indexes the sample-component
*/
public void setIndexes(int[] indexes) {
super.setIndexes(indexes);
contour.setIndexes(indexes);
}
/**
* Sets the visibility of the contour plot.
* Drawing will be disabled if visible is false.
*
* @param isVisible
*/
public void setVisible(boolean isVisible) {
visible = isVisible;
}
/**
* Shows how values map to colors.
*/
public JFrame showLegend() {
return colorMap.showLegend();
}
/**
* Shows the contour lines.
*
* @param show
*/
public void setShowGridLines(boolean show) {
contour.setShowGridLines(show);
}
/**
* Setting the color palette is not supported. The complex palette always maps phase to color.
* @param colors
*/
public void setColorPalette(Color[] colors) {}
/**
* Setting the palette is not supported. The complex palette always maps phase to color.
* @param type
*/
public void setPaletteType(int type) {}
/**
* Sets the floor and ceiling colors.
*
* @param floorColor
* @param ceilColor
*/
public void setFloorCeilColor(Color floorColor, Color ceilColor) {
super.setFloorCeilColor(floorColor, ceilColor);
}
/**
* Sets the contour line color.
* The default line color is dark green.
* @param color
*/
public void setGridLineColor(Color color) {
contour.setGridLineColor(color);
}
/**
* Draws the image and the grid.
* @param panel
* @param g
*/
public void draw(DrawingPanel panel, Graphics g) {
if(!visible) {
return;
}
super.draw(panel, g);
if(showContours) {
contour.draw(panel, g);
}
}
}
/*
* Open Source Physics software is free software; you can redistribute
* it and/or modify it under the terms of the GNU General Public License (GPL) as
* published by the Free Software Foundation; either version 2 of the License,
* or(at your option) any later version.
* Code that uses any portion of the code in the org.opensourcephysics package
* or any subpackage (subdirectory) of this package must must also be be released
* under the GNU GPL license.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston MA 02111-1307 USA
* or view the license online at http://www.gnu.org/copyleft/gpl.html
*
* Copyright (c) 2007 The Open Source Physics project
* http://www.opensourcephysics.org
*/