- Cal3D 0.11 API Reference -

coremesh.h
1//****************************************************************************//
2// coremesh.h //
3// Copyright (C) 2001, 2002 Bruno 'Beosil' Heidelberger //
4//****************************************************************************//
5// This library is free software; you can redistribute it and/or modify it //
6// under the terms of the GNU Lesser General Public License as published by //
7// the Free Software Foundation; either version 2.1 of the License, or (at //
8// your option) any later version. //
9//****************************************************************************//
10
11#ifndef CAL_COREMESH_H
12#define CAL_COREMESH_H
13
14
15#include "cal3d/global.h"
16#include "cal3d/refcounted.h"
17#include "cal3d/refptr.h"
18
19
20class CalCoreSubmesh;
21
22
23class CAL3D_API CalCoreMesh : public cal3d::RefCounted
24{
25protected:
27
28public:
30
31 int addCoreSubmesh(CalCoreSubmesh *pCoreSubmesh);
34 std::vector<CalCoreSubmesh *>& getVectorCoreSubmesh();
35 int addAsMorphTarget(CalCoreMesh *pCoreMesh);
36 void scale(float factor);
37 void setFilename(const std::string& filename);
38 const std::string& getFilename(void);
39 void setName(const std::string& name);
40 const std::string& getName(void);
41
42private:
43 std::vector<CalCoreSubmesh *> m_vectorCoreSubmesh;
44 std::string m_name;
45 std::string m_filename;
46};
47typedef cal3d::RefPtr<CalCoreMesh> CalCoreMeshPtr;
48
49#endif
const std::string & getName(void)
Get the symbolic name the core mesh.
Definition coremesh.cpp:259
CalCoreSubmesh * getCoreSubmesh(int id)
Provides access to a core submesh.
Definition coremesh.cpp:87
void scale(float factor)
Scale the Mesh.
Definition coremesh.cpp:201
int addCoreSubmesh(CalCoreSubmesh *pCoreSubmesh)
Adds a core submesh.
Definition coremesh.cpp:63
int getCoreSubmeshCount()
Returns the number of core submeshes.
Definition coremesh.cpp:107
std::vector< CalCoreSubmesh * > & getVectorCoreSubmesh()
Returns the core submesh vector.
Definition coremesh.cpp:121
void setFilename(const std::string &filename)
Set the name of the file in which the core mesh is stored, if any.
Definition coremesh.cpp:217
CalCoreMesh()
Constructs the core mesh instance.
Definition coremesh.cpp:30
const std::string & getFilename(void)
Get the name of the file in which the core mesh is stored, if any.
Definition coremesh.cpp:232
int addAsMorphTarget(CalCoreMesh *pCoreMesh)
Adds a core submesh.
Definition coremesh.cpp:139
void setName(const std::string &name)
Set the symbolic name of the core mesh.
Definition coremesh.cpp:244
Definition coresubmesh.h:23
Derive from RefCounted to make your class have reference-counted lifetime semantics.
Definition refcounted.h:29
A container-safe smart pointer used for refcounted classes.
Definition refptr.h:11

Generated by The Cal3D Team with Doxygen 1.15.0