PixelLightAPI
.
|
00001 /*********************************************************\ 00002 * File: SNMPhysicsBodyChamferCylinder.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 __PLPHYSICS_SCENENODEMODIFIERS_BODYCHAMFERCYLINDER_H__ 00024 #define __PLPHYSICS_SCENENODEMODIFIERS_BODYCHAMFERCYLINDER_H__ 00025 #pragma once 00026 00027 00028 //[-------------------------------------------------------] 00029 //[ Includes ] 00030 //[-------------------------------------------------------] 00031 #include "PLPhysics/SceneNodeModifiers/SNMPhysicsBody.h" 00032 00033 00034 //[-------------------------------------------------------] 00035 //[ Namespace ] 00036 //[-------------------------------------------------------] 00037 namespace PLPhysics { 00038 00039 00040 //[-------------------------------------------------------] 00041 //[ Classes ] 00042 //[-------------------------------------------------------] 00043 /** 00044 * @brief 00045 * Physics chamfer cylinder body scene node modifier 00046 */ 00047 class SNMPhysicsBodyChamferCylinder : public SNMPhysicsBody { 00048 00049 00050 //[-------------------------------------------------------] 00051 //[ RTTI interface ] 00052 //[-------------------------------------------------------] 00053 pl_class(PLPHYSICS_RTTI_EXPORT, SNMPhysicsBodyChamferCylinder, "PLPhysics", PLPhysics::SNMPhysicsBody, "Physics chamfer cylinder body scene node modifier") 00054 // Attributes 00055 pl_attribute(Radius, float, 1.0f, ReadWrite, GetSet, "Chamfer cylinder radius at the base", "Min='0.0'") 00056 pl_attribute(Height, float, 1.0f, ReadWrite, GetSet, "Chamfer cylinder height along the x local axis", "Min='0.0'") 00057 // Constructors 00058 pl_constructor_1(ParameterConstructor, PLScene::SceneNode&, "Parameter constructor", "") 00059 pl_class_end 00060 00061 00062 //[-------------------------------------------------------] 00063 //[ Public RTTI get/set functions ] 00064 //[-------------------------------------------------------] 00065 public: 00066 PLPHYSICS_API float GetRadius() const; 00067 PLPHYSICS_API void SetRadius(float fValue); 00068 PLPHYSICS_API float GetHeight() const; 00069 PLPHYSICS_API void SetHeight(float fValue); 00070 00071 00072 //[-------------------------------------------------------] 00073 //[ Public functions ] 00074 //[-------------------------------------------------------] 00075 public: 00076 /** 00077 * @brief 00078 * Constructor 00079 * 00080 * @param[in] cSceneNode 00081 * Owner scene node 00082 */ 00083 PLPHYSICS_API SNMPhysicsBodyChamferCylinder(PLScene::SceneNode &cSceneNode); 00084 00085 /** 00086 * @brief 00087 * Destructor 00088 */ 00089 PLPHYSICS_API virtual ~SNMPhysicsBodyChamferCylinder(); 00090 00091 00092 //[-------------------------------------------------------] 00093 //[ Private data ] 00094 //[-------------------------------------------------------] 00095 private: 00096 float m_fRadius; /**< Chamfer cylinder radius at the base */ 00097 float m_fHeight; /**< Chamfer cylinder height along the x local axis */ 00098 00099 00100 //[-------------------------------------------------------] 00101 //[ Private virtual SNMPhysicsBody functions ] 00102 //[-------------------------------------------------------] 00103 private: 00104 virtual void CreatePhysicsBody() override; 00105 00106 00107 }; 00108 00109 00110 //[-------------------------------------------------------] 00111 //[ Namespace ] 00112 //[-------------------------------------------------------] 00113 } // PLPhysics 00114 00115 00116 #endif // __PLPHYSICS_SCENENODEMODIFIERS_BODYCHAMFERCYLINDER_H__
|