111 { |
111 { |
112 // The model is not flat. |
112 // The model is not flat. |
113 return {}; |
113 return {}; |
114 } |
114 } |
115 } |
115 } |
|
116 |
|
117 QString ldraw::CompoundObject::transformToBareString() const |
|
118 { |
|
119 return utility::format( |
|
120 "%1 %2 %3 %4 %5 %6 %7 %8 %9 %10 %11 %12", |
|
121 this->transformation[3][0], |
|
122 this->transformation[3][1], |
|
123 this->transformation[3][2], |
|
124 this->transformation[0][0], |
|
125 this->transformation[1][0], |
|
126 this->transformation[2][0], |
|
127 this->transformation[0][1], |
|
128 this->transformation[1][1], |
|
129 this->transformation[2][1], |
|
130 this->transformation[0][2], |
|
131 this->transformation[1][2], |
|
132 this->transformation[2][2]); |
|
133 } |