/Prototipo/PrototipoCommons/src/memoria/commons/structures/coordinates/UTMCoordinate.java
http://prototipomemoria.googlecode.com/ · Java · 29 lines · 15 code · 6 blank · 8 comment · 0 complexity · d7820318116532e99419e46446c0577e MD5 · raw file
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package memoria.commons.structures.coordinates;
- /**
- *
- * @author diego
- */
- public class UTMCoordinate extends Coordinate{
- @Override
- public double to_double_x() {
- throw new UnsupportedOperationException("Not supported yet.");
- }
- @Override
- public double to_double_y() {
- throw new UnsupportedOperationException("Not supported yet.");
- }
- @Override
- public double to_double_z() {
- throw new UnsupportedOperationException("Not supported yet.");
- }
- }