-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLandQuakeMarker.java
41 lines (30 loc) · 1.04 KB
/
LandQuakeMarker.java
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
package module6;
import de.fhpotsdam.unfolding.data.PointFeature;
import processing.core.PGraphics;
/** Implements a visual marker for land earthquakes on an earthquake map
*
* @author UC San Diego Intermediate Software Development MOOC team
*
*/
public class LandQuakeMarker extends EarthquakeMarker {
public LandQuakeMarker(PointFeature quake) {
// calling EarthquakeMarker constructor
super(quake);
// setting field in earthquake marker
isOnLand = true;
}
@Override
public void drawEarthquake(PGraphics pg, float x, float y) {
// IMPLEMENT: drawing circle for LandQuake
// DO NOT set the fill color. That will be set in the EarthquakeMarker
// class to indicate the depth of the earthquake.
// Simply draw a centered square.
// HINT: Notice the radius variable in the EarthquakeMarker class
// and how it is set in the EarthquakeMarker constructor
pg.ellipse(x, y, 2*radius, 2*radius);
}
// Get the country the earthquake is in
public String getCountry() {
return (String) getProperty("country");
}
}