No Description

main.cpp 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* Ive modifico el programa en Junio 3 para anadir ventanas para el circulo, el corazon, y la mariposa */
  2. #include "xyplotwindow.h"
  3. #include <QApplication>
  4. int main(int argc, char *argv[])
  5. {
  6. QApplication a(argc, argv);
  7. XYPlotWindow wLine;
  8. XYPlotWindow wCircle;
  9. XYPlotWindow wHeart;
  10. XYPlotWindow wButterfly;
  11. double y = 0.00;
  12. double x = 0.00;
  13. double increment = 0.01;
  14. // Plot of a segment
  15. // Grafica de un segmento
  16. for (double t = 0; t < 2*M_PI; t = t + increment) {
  17. x = t;
  18. y = t;
  19. // add x and y as a point in the graph
  20. // anade x y y como un punto en la grafica
  21. wLine.AddPointToGraph(x,y);
  22. }
  23. // After all the points have been added, plot and show the graph
  24. // Despues que todos los puntos han sido anadidos, grafica y demuestra la grafica
  25. wLine.Plot();
  26. wLine.show();
  27. // Plot of a circle
  28. // Grafica de un circulo
  29. // YOUR CODE FOR THE CIRCLE HERE
  30. // TU CODIGO PARA EL CIRCULO VA AQUI
  31. // Plot of a heart
  32. // Grafica de un corazon
  33. // YOUR CODE FOR THE HEART HERE
  34. // TU CODIGO PARA EL CORAZON VA AQUI
  35. // Plot of a butterfly
  36. // Grafica de una mariposa
  37. // YOUR CODE FOR THE BUTTERFLY HERE
  38. // TU CODIGO PARA LA MARIPOSA VA AQUI
  39. return a.exec();
  40. }