/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

  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package memoria.commons.structures.coordinates;
  6. /**
  7. *
  8. * @author diego
  9. */
  10. public class UTMCoordinate extends Coordinate{
  11. @Override
  12. public double to_double_x() {
  13. throw new UnsupportedOperationException("Not supported yet.");
  14. }
  15. @Override
  16. public double to_double_y() {
  17. throw new UnsupportedOperationException("Not supported yet.");
  18. }
  19. @Override
  20. public double to_double_z() {
  21. throw new UnsupportedOperationException("Not supported yet.");
  22. }
  23. }