|
@@ -22,7 +22,7 @@ public:
|
22
|
22
|
/// \param parent when creating a DrawingWindow in the main function, leave this parameter empty
|
23
|
23
|
/// \~Spanish
|
24
|
24
|
/// \brief Constructor
|
25
|
|
- /// \param parent ventana padre
|
|
25
|
+ /// \param parent (ventana padre) Dejar el parametro de parent vacio cuando se cree el DrawingWindow en la funcion de main.
|
26
|
26
|
explicit DrawingWindow(QWidget *parent = 0);
|
27
|
27
|
|
28
|
28
|
/// \fn DrawingWindow::~DrawingWindow - the destructor
|
|
@@ -96,20 +96,20 @@ public:
|
96
|
96
|
/// \param x initial coordinate x
|
97
|
97
|
/// \param y initial coordinate y
|
98
|
98
|
/// \param sideLength length of the sides of the box
|
99
|
|
- /// \param shrinkFactor factor to decreese the sideLength in
|
|
99
|
+ /// \param shrinkFactor factor to decrease the sideLength in
|
100
|
100
|
/// the recursion for the interior boxes
|
101
|
101
|
/// \param smallestLength smallest length of the size of the
|
102
|
102
|
/// side of the boxes
|
103
|
103
|
/// \param c color of the boxes
|
104
|
104
|
/// \~Spanish
|
105
|
105
|
/// \brief Funcion recursiva que dibuja cajas mas pequenas dentro de las cuatro
|
106
|
|
- /// esquenas de las cajas.
|
|
106
|
+ /// esquinas de las cajas.
|
107
|
107
|
/// \param x coordenada inicial x
|
108
|
108
|
/// \param y coordenada inicial y
|
109
|
109
|
/// \param sideLength largo de los lados de la caja
|
110
|
110
|
/// \param shrinkFactor factor para disminuir el tamano de los lados en
|
111
|
111
|
/// la recursion para las cajas interiores
|
112
|
|
- /// \param smallestLength largo mas pequeno de el tamano de el
|
|
112
|
+ /// \param smallestLength largo mas pequeno del tamano de el
|
113
|
113
|
/// lado de las cajas
|
114
|
114
|
/// \param c color de las cajas
|
115
|
115
|
void boxes(int x, int y, int sideLength, double shrinkFactor, int smallestLength, QColor c) ;
|
|
@@ -120,7 +120,7 @@ public:
|
120
|
120
|
/// \param size snowflake size
|
121
|
121
|
/// \param level recursion depth
|
122
|
122
|
/// \~Spanish
|
123
|
|
- /// \brief function de interface para la funcion recursiva snowflake
|
|
123
|
+ /// \brief funcion de interface para la funcion recursiva snowflake
|
124
|
124
|
/// \param size tamano del copo de nieve
|
125
|
125
|
/// \param level profundidad de la recursion
|
126
|
126
|
void snowHelper(int size, int level) ;
|