We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9cba20 commit 751b727Copy full SHA for 751b727
src/geode/geometry/frame.cpp
@@ -170,7 +170,7 @@ namespace geode
170
auto output = absl::StrCat( "(", frame_[0].string() );
171
for( const auto f : LRange{ dimension - 1 } )
172
{
173
- absl::StrAppend( &output, " -- ", frame_[f].string() );
+ absl::StrAppend( &output, " -- ", frame_[f + 1].string() );
174
}
175
absl::StrAppend( &output, ")" );
176
return output;
0 commit comments