Skip to content

Commit

Permalink
update default scaling for cj output
Browse files Browse the repository at this point in the history
  • Loading branch information
Ylannl committed Dec 11, 2024
1 parent 2350b22 commit b0b1fbe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/roofer-app/roofer-app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1030,9 +1030,9 @@ int main(int argc, const char* argv[]) {
CityJsonWriter->scale_y_ = (*roofer_cfg.cj_scale)[1];
CityJsonWriter->scale_z_ = (*roofer_cfg.cj_scale)[2];
} else {
CityJsonWriter->scale_x_ = 0.01;
CityJsonWriter->scale_y_ = 0.01;
CityJsonWriter->scale_z_ = 0.01;
CityJsonWriter->scale_x_ = 0.001;
CityJsonWriter->scale_y_ = 0.001;
CityJsonWriter->scale_z_ = 0.001;
}

std::ofstream ofs;
Expand Down

0 comments on commit b0b1fbe

Please sign in to comment.