202 // ============================================================================= |
202 // ============================================================================= |
203 // ----------------------------------------------------------------------------- |
203 // ----------------------------------------------------------------------------- |
204 void matrix::puts() const |
204 void matrix::puts() const |
205 { for (short i = 0; i < 3; ++i) |
205 { for (short i = 0; i < 3; ++i) |
206 { for (short j = 0; j < 3; ++j) |
206 { for (short j = 0; j < 3; ++j) |
207 print ("%1\t", m_vals[ (i * 3) + j]); |
207 log ("%1\t", m_vals[ (i * 3) + j]); |
208 |
208 |
209 print ("\n"); |
209 log ("\n"); |
210 } |
210 } |
211 } |
211 } |
212 |
212 |
213 // ============================================================================= |
213 // ============================================================================= |
214 // ----------------------------------------------------------------------------- |
214 // ----------------------------------------------------------------------------- |