types.cpp

changeset 135
c243df39913e
parent 116
4fde8fdf258a
child 140
2e8c1626aef7
equal deleted inserted replaced
134:7fd0784471df 135:c243df39913e
15 } 15 }
16 16
17 // ============================================================================= 17 // =============================================================================
18 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 18 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
19 // ============================================================================= 19 // =============================================================================
20 str vertex::getStringRep (const bool bMangled) { 20 str vertex::stringRep (const bool bMangled) {
21 const char* sFormat = (bMangled) ? "(%s, %s, %s)" : "%s %s %s"; 21 const char* sFormat = (bMangled) ? "(%s, %s, %s)" : "%s %s %s";
22 22
23 return format (sFormat, 23 return format (sFormat,
24 ftoa (x).chars(), 24 ftoa (x).chars(),
25 ftoa (y).chars(), 25 ftoa (y).chars(),
101 } 101 }
102 102
103 // ============================================================================= 103 // =============================================================================
104 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 104 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
105 // ============================================================================= 105 // =============================================================================
106 str matrix::getStringRep () { 106 str matrix::stringRep () {
107 str val; 107 str val;
108 for (short i = 0; i < 9; ++i) { 108 for (short i = 0; i < 9; ++i) {
109 if (i > 0) 109 if (i > 0)
110 val += ' '; 110 val += ' ';
111 111

mercurial