Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
LiangliangNan committed Jun 11, 2024
1 parent 4f9602f commit 65e419d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion easy3d/viewer/viewer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
#include <easy3d/renderer/camera.h>
#include <easy3d/renderer/manipulated_camera_frame.h>
#include <easy3d/renderer/key_frame_interpolator.h>
#include <easy3d/renderer/framebuffer_object.h>
#include <easy3d/renderer/opengl_util.h>
#include <easy3d/renderer/opengl_error.h>
#include <easy3d/renderer/text_renderer.h>
Expand Down
8 changes: 4 additions & 4 deletions easy3d/viewer/viewer.h
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ namespace easy3d {
virtual Model* add_model(const std::string& file_name, bool create_default_drawables = true);

/**
* @brief Add an existing model to the viewer to be visualized. If the model has been successfully
* added to the viewer, the viewer will be in charge of its memory management.
* @brief Add an existing model to the viewer to be visualized. On success, the viewer will
* be in charge of the memory management of the model.
* @details This method adds a model into the viewer. It allows the user to control if
* default drawables will be created. The default drawables are
* - for point clouds: "vertices".
Expand Down Expand Up @@ -277,8 +277,8 @@ namespace easy3d {
//@{

/**
* @brief Add a drawable to the viewer to be visualized. After a drawable being added to the
* viewer, the viewer will be in charge of its memory management.
* @brief Add a drawable to the viewer to be visualized. On success, the viewer will be in
* charge of the memory management of the drawable
* @details The use of drawables for visualization is quite flexible. Drawables are
* typically created for rendering 3D models (e.g., point clouds, meshes, graphs)
* and a 3D model is usually loaded from a file or generated by an algorithm. This
Expand Down

0 comments on commit 65e419d

Please sign in to comment.