17 |
17 |
18 // ============================================================================= |
18 // ============================================================================= |
19 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
19 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
20 // ============================================================================= |
20 // ============================================================================= |
21 str vertex::stringRep (const bool mangled) { |
21 str vertex::stringRep (const bool mangled) { |
22 return format (mangled ? "(%s, %s, %s)" : "%s %s %s", |
22 return fmt (mangled ? "(%s, %s, %s)" : "%s %s %s", |
23 ftoa (coord (X)).chars(), |
23 ftoa (coord (X)).chars(), |
24 ftoa (coord (Y)).chars(), |
24 ftoa (coord (Y)).chars(), |
25 ftoa (coord (Z)).chars()); |
25 ftoa (coord (Z)).chars()); |
26 } |
26 } |
27 |
27 |