/** * Author: Josiah Yoder et al. * Class: SE1011-011 * Lesson: Week 9, Day 1 */ public class Point011_9_1 { private double northMeters; private double eastMeters; public Point011_9_1(double north, double east){ this.northMeters = north; this.eastMeters = east; } }