Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
samoncrief committed Dec 16, 2024
1 parent 4280c39 commit b498500
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
4 changes: 2 additions & 2 deletions library/private/scene_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
#ifndef f3d_scene_impl_h
#define f3d_scene_impl_h

#include "scene.h"
#include "log.h"
#include "scene.h"

#include <memory>

Expand Down Expand Up @@ -47,7 +47,7 @@ class scene_impl : public scene
*/
void SetInteractor(interactor_impl* interactor);

//Display available cameras in the log
// Display available cameras in the log
void PrintImporterDescription(log::VerboseLevel level);

private:
Expand Down
12 changes: 3 additions & 9 deletions library/src/interactor_impl.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -664,21 +664,15 @@ interactor& interactor_impl::initCommands()

this->addCommand("print_scene_info",
[&](const std::vector<std::string>&)
{
this->Internals->Window.PrintSceneDescription(log::VerboseLevel::INFO);
});
{ this->Internals->Window.PrintSceneDescription(log::VerboseLevel::INFO); });

this->addCommand("print_coloring_info",
[&](const std::vector<std::string>&)
{
this->Internals->Window.PrintColoringDescription(log::VerboseLevel::INFO);
});
{ this->Internals->Window.PrintSceneDescription(log::VerboseLevel::INFO); });

this->addCommand("print_mesh_info",
[&](const std::vector<std::string>&)
{
this->Internals->Scene.PrintImporterDescription(log::VerboseLevel::INFO);
});
{ this->Internals->Scene.PrintImporterDescription(log::VerboseLevel::INFO); });

this->addCommand("print_options_info",
[&](const std::vector<std::string>&)
Expand Down

0 comments on commit b498500

Please sign in to comment.