00001 /* 00002 ----------------------------------------------------------------------------- 00003 This source file is part of OpenSpace3D 00004 For the latest info, see http://www.openspace3d.com 00005 00006 Copyright (c) 2010 I-maginer 00007 00008 This program is free software; you can redistribute it and/or modify it under 00009 the terms of the GNU Lesser General Public License as published by the Free Software 00010 Foundation; either version 2 of the License, or (at your option) any later 00011 version. 00012 00013 This program is distributed in the hope that it will be useful, but WITHOUT 00014 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 00015 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. 00016 00017 You should have received a copy of the GNU Lesser General Public License along with 00018 this program; if not, write to the Free Software Foundation, Inc., 59 Temple 00019 Place - Suite 330, Boston, MA 02111-1307, USA, or go to 00020 http://www.gnu.org/copyleft/lesser.txt 00021 00022 You may alternatively use this source under the terms of a specific version of 00023 the OpenSpace3D Unrestricted License provided you have obtained such a license from 00024 I-maginer. 00025 ----------------------------------------------------------------------------- 00026 */ 00027 00028 #include "SO3FapMeshsTools.h" 00029 00030 SFapMeshsTools::SFapMeshsTools() 00031 { 00032 // Forbiden (private). Use static functions instead. 00033 } 00034 00035 void SFapMeshsTools::CreateFaceMesh(const Ogre::String& strName, std::string pathStdFDP, std::string pathStdIndices, Ogre::String groupName) 00036 { 00037 /* Ogre::MeshPtr pFaceMesh = Ogre::MeshManager::getSingleton().createManual(strName, groupName); 00038 Ogre::SubMesh* pFaceMeshVertex = pFaceMesh->createSubMesh(); 00039 pFaceMeshVertex->sharedVertexData = new Ogre::VertexData(); 00040 CreateFaceMesh(pFaceMesh->sharedVertexData, pFaceMeshVertex->indexData); 00041 00042 // Generate face list 00043 pFaceMeshVertex->useSharedVertices = true; 00044 pFaceMesh->_setBounds(Ogre::AxisAlignedBox(Ogre::Vector3(1, 1, 1), Ogre::Vector3(0, 0, 0)), false); 00045 pFaceMesh->_setBoundingSphereRadius(radius); 00046 00047 // this line makes clear the mesh is loaded (avoids memory leaks) 00048 pFaceMesh->load();*/ 00049 } 00050 00051 void SFapMeshsTools::CreateFaceMesh(Ogre::VertexData*& vertexData, Ogre::IndexData*& indexData, std::string pathStdFDP, std::string pathStdIndices) 00052 { 00053 assert(vertexData && indexData); 00054 }
1.6.3