-
Notifications
You must be signed in to change notification settings - Fork 258
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
604bd6f
commit 2e6c5a5
Showing
1 changed file
with
4 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,24 +32,17 @@ | |
|
||
#include <easy3d/core/types.h> | ||
|
||
/******************************************************************************************** | ||
* | ||
* A Model is the base class for 3D models, e.g., SurfaceMesh, PointCloud. | ||
* A Model can have multiple drawables, e.g., faces, vertices, wireframe. | ||
* | ||
* Version: 1.1 | ||
* created: Dec. 03, 2018 | ||
* author: Liangliang Nan | ||
* contact: [email protected] | ||
* | ||
*********************************************************************************************/ | ||
|
||
namespace easy3d { | ||
|
||
class PointsDrawable; | ||
class LinesDrawable; | ||
class TrianglesDrawable; | ||
|
||
/* | ||
* Model is the base class for 3D models, e.g., SurfaceMesh, PointCloud. | ||
* A Model can have multiple drawables, e.g., faces, vertices, wireframe. | ||
*/ | ||
class Model | ||
{ | ||
public: | ||
|