PixelLightAPI
.
|
00001 /*********************************************************\ 00002 * File: MeshCreatorSuperEllipse.h * 00003 * 00004 * Copyright (C) 2002-2012 The PixelLight Team (http://www.pixellight.org/) 00005 * 00006 * This file is part of PixelLight. 00007 * 00008 * PixelLight is free software: you can redistribute it and/or modify 00009 * it under the terms of the GNU Lesser General Public License as published by 00010 * the Free Software Foundation, either version 3 of the License, or 00011 * (at your option) any later version. 00012 * 00013 * PixelLight is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 * GNU Lesser General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU Lesser General Public License 00019 * along with PixelLight. If not, see <http://www.gnu.org/licenses/>. 00020 \*********************************************************/ 00021 00022 00023 #ifndef __PLMESH_MESHCREATOR_SUPERELLIPSE_H__ 00024 #define __PLMESH_MESHCREATOR_SUPERELLIPSE_H__ 00025 #pragma once 00026 00027 00028 //[-------------------------------------------------------] 00029 //[ Includes ] 00030 //[-------------------------------------------------------] 00031 #include <PLMath/Vector3.h> 00032 #include "PLMesh/Creator/MeshCreator.h" 00033 00034 00035 //[-------------------------------------------------------] 00036 //[ Namespace ] 00037 //[-------------------------------------------------------] 00038 namespace PLMesh { 00039 00040 00041 //[-------------------------------------------------------] 00042 //[ Classes ] 00043 //[-------------------------------------------------------] 00044 /** 00045 * @brief 00046 * Super ellipse mesh creator class 00047 * 00048 * @remarks 00049 * The super ellipsoid is a versatile primitive that is controlled by two parameters. 00050 * As special cases it can represent a sphere, square box, and closed cylindrical. 00051 * It should be noted that there are some numerical issues with both very small or very large 00052 * values of these parameters. Typically, for safety, they should be in the range of 0.1 to about 5.\n 00053 * 00054 * Examples: (Power1/Power2)\n 00055 * 1.0/1.0 = sphere\n 00056 * 0.1/1.0 = rounded cylinder\n 00057 * 0.1/0.1 = rounded box\n 00058 * 1.0/0.1 = similar to a rounded box\n 00059 */ 00060 class MeshCreatorSuperEllipse : public MeshCreator { 00061 00062 00063 //[-------------------------------------------------------] 00064 //[ RTTI interface ] 00065 //[-------------------------------------------------------] 00066 pl_class(PLMESH_RTTI_EXPORT, MeshCreatorSuperEllipse, "PLMesh", PLMesh::MeshCreator, "Super ellipse mesh creator class") 00067 // Attributes 00068 pl_attribute(Power1, float, 0.5f, ReadWrite, DirectValue, "Control parameter 1", "") 00069 pl_attribute(Power2, float, 0.1f, ReadWrite, DirectValue, "Control parameter 2", "") 00070 pl_attribute(Detail, PLCore::uint32, 10, ReadWrite, DirectValue, "Detail", "") 00071 pl_attribute(Offset, PLMath::Vector3, PLMath::Vector3::Zero, ReadWrite, DirectValue, "Offset to center", "") 00072 // Constructors 00073 pl_constructor_0(DefaultConstructor, "Default constructor", "") 00074 pl_class_end 00075 00076 00077 //[-------------------------------------------------------] 00078 //[ Public functions ] 00079 //[-------------------------------------------------------] 00080 public: 00081 /** 00082 * @brief 00083 * Default constructor 00084 */ 00085 PLMESH_API MeshCreatorSuperEllipse(); 00086 00087 /** 00088 * @brief 00089 * Destructor 00090 */ 00091 PLMESH_API virtual ~MeshCreatorSuperEllipse(); 00092 00093 00094 //[-------------------------------------------------------] 00095 //[ Private functions ] 00096 //[-------------------------------------------------------] 00097 private: 00098 /** 00099 * @brief 00100 * Internal helper function 00101 */ 00102 void EvalSuperEllipse(float fT1, float fT2, float fP1, float fP2, PLMath::Vector3 *pV) const; 00103 00104 00105 //[-------------------------------------------------------] 00106 //[ Private virtual MeshCreator functions ] 00107 //[-------------------------------------------------------] 00108 private: 00109 virtual Mesh *Create(Mesh &cMesh, PLCore::uint32 nLODLevel = 0, bool bStatic = true) const override; 00110 00111 00112 }; 00113 00114 00115 //[-------------------------------------------------------] 00116 //[ Namespace ] 00117 //[-------------------------------------------------------] 00118 } // PLMesh 00119 00120 00121 #endif // __PLMESH_MESHCREATOR_SUPERELLIPSE_H__
|