libmoldeo (Moldeo 1.0 Core)  1.0
libmoldeo es el conjunto de objetos y funciones, que permiten ejecutar las operaciones básicas de la plataforma Moldeo, y que compone su núcleo.
moGUIManager.h
Ir a la documentación de este archivo.
1 /*******************************************************************************
2 
3  moGUIManager.h
4 
5  ****************************************************************************
6  * *
7  * This source is free software; you can redistribute it and/or modify *
8  * it under the terms of the GNU General Public License as published by *
9  * the Free Software Foundation; either version 2 of the License, or *
10  * (at your option) any later version. *
11  * *
12  * This code is distributed in the hope that it will be useful, but *
13  * WITHOUT ANY WARRANTY; without even the implied warranty of *
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
15  * General Public License for more details. *
16  * *
17  * A copy of the GNU General Public License is available on the World *
18  * Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
19  * obtain it by writing to the Free Software Foundation, *
20  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
21  * *
22  ****************************************************************************
23 
24  Copyright(C) 2006 Fabricio Costa
25 
26  Authors:
27  Fabricio Costa
28 
29 *******************************************************************************/
30 
31 #ifndef __MOGUIMANAGER_H
32 #define __MOGUIMANAGER_H
33 
34 #include <moMathVector.h>
35 #include <moMathVector3.h>
36 #include <moMathVector4.h>
37 #include <mo3dModelManager.h>
38 
41 typedef moPointf moPoint;
52 
54  public:
56  m_Position = moPosition( 0.0, 0.0, -10.0);
57  m_Center = moPosition( 0.0, 0.0, 0.0);
58  }
59  virtual ~moCamera3D() {
60 
61  }
62  moCamera3D( const moCamera3D& p_src );
63  moCamera3D& operator=( const moCamera3D& p_src );
64  moCamera3D& operator=( const moCamera3DBase& p_src );
65 
68 
69 };
70 
71 typedef moVector3fArray moPointArray;
72 typedef moVector3fArray moColorArray;
73 typedef moVector3fArray moColorRGBArray;
74 typedef moVector4fArray moColor4fArray;
75 typedef moVector4fArray moColorRGBAArray;
76 typedef moVector2fArray moTCoordArray;
77 typedef moVector3fArray moVertexArray;
78 typedef moVector3iArray moFaceArray;
79 typedef moMatrix3fArray moFace3Array;
80 
99 };
100 
101 
103 
104  public:
105 
106  moAttribute( void* p_buffer=NULL, long p_itemsize=0, long p_length=0 ) { buffer=p_buffer; itemsize=p_itemsize; length=p_length; }
107  virtual ~moAttribute() {}
108 
109  protected:
110 
111  void* buffer;
112  long itemsize;
113  long length;
114 
115 };
116 
117 moDeclareExportedDynamicArray( moAttribute, moAttributeArray);
118 
120 
128 
129  public:
130  moGeometry();
131  moGeometry( moGeometryType p_type );
132  virtual ~moGeometry();
133 
135  (*this) = p_src;
136  }
137  moGeometry& operator=(const moGeometry& p_src );
138  virtual MOboolean Init();
139  virtual MOboolean Init( moResourceManager* pResourceManager );
140  virtual MOboolean Finish();
141 
142  virtual float* GetVerticesBuffer();
143  virtual float* GetNormalsBuffer();
144  virtual float* GetColorBuffer();
145  virtual float* GetVerticesUVBuffer();
146 
147  virtual const moPointArray& GetVertices() const {
148  return m_Vertices;
149  }
150 
151  virtual const moPointArray& GetNormals() const {
152  return m_Normals;
153  }
154 
155  virtual const moTCoordArray& GetVerticesUV() const {
156  return m_VerticesUvs;
157  }
158 
159  virtual const moTCoordArray& GetFacesUV() const {
160  return m_FaceVertexUvs;
161  }
162 
163  virtual const moColorArray& GetColors() const {
164  return m_Colors;
165  }
166 
167 
168  virtual const moFaceArray& GetFaces() const {
169  return m_Faces;
170  }
171 
173  return m_Type;
174  }
175 
176  void applyMatrix( const moGLMatrixf &p_ModelMatrix );
177 
178  int addAttribute( const moText& p_AttributeName, moAttribute* p_attribute );
179  int removeAttribute( const moText& p_AttributeName );
180  moAttribute* getAttribute( const moText& p_AttributeName );
181 
182  static moText TypeToStr( moGeometryType p_type );
183  virtual moText ToJSON();
184 
185  public:
186 
189 
194 
199 
200  moFaceArray m_Faces;//array of triangles, 3 points referencing each an index of m_Vertices.
201  moTCoordArray m_FaceVertexUvs;//array of texture coordinates for each vertex, corresponding to each face from m_Faces
202  moAttributeArray m_Attributes;
203 };
204 
205 
207  public:
208  moPath();
209  moPath( const moVector2fArray& p_Path );
210  virtual ~moPath();
211 
212  void lineTo( float X, float Y);
213  void moveTo( float X, float Y);
214 
215  protected:
216  float offx,offy;
217  moVector2fArray m_Path;
218 
219 };
220 
221 
223 
224  public:
225 
226  moMaterialBase();
227  moMaterialBase(int p_Id, const moText& p_Name);
229  (*this) = p_src;
230  }
231  const moMaterialBase& operator = ( const moMaterialBase& p_src );
232  virtual ~moMaterialBase() {}
233 
234 
235  int m_Id;
238 
239  float m_fOpacity;
251 
256  float m_fOverdraw;
257  int m_iSides;
258 
259 };
260 
262  public:
263  moMaterial();
264  moMaterial( const moMaterial& p_src ) : moMaterialBase() {
265  (*this) = p_src;
266  }
267  const moMaterial& operator= ( const moMaterial& p_src );
268  virtual ~moMaterial() {}
269 
270 
278 
279 };
280 
281 
283  public:
284  moObject3D();
285  moObject3D(const moGeometry& p_geometry, const moMaterial& p_material ) : moSceneNode() {
286  m_Geometry = p_geometry;
287  m_Material = p_material;
288  }
289  virtual ~moObject3D() {
290 
291  }
292 
293  moObject3D( const moObject3D& p_src ) : moSceneNode() {
294  (*this) = p_src;
295  }
296 
297  moObject3D& operator=( const moObject3D& p_src ) {
298  m_Geometry = p_src.m_Geometry;
299  m_Material = p_src.m_Material;
300  m_Position = p_src.m_Position;
301  m_Scale = p_src.m_Scale;
302  m_Rotation = p_src.m_Rotation;
303  return (*this);
304  }
305 
306  void SetPosition( const moPosition& p_position ) {
307  m_Position = p_position;
308  }
309  void SetRotation( const moPosition& p_rotation ) {
310  m_Rotation = p_rotation;
311  }
312  void SetScale( const moPosition& p_scale ) {
313  m_Scale = p_scale;
314  }
315 
321 
322 };
323 
325  public:
326  moBone();
327  virtual ~moBone();
328 
329 };
330 
332  public:
333  moSprite();
334  virtual ~moSprite();
335 
336 };
337 
339  public:
340  moLine();
341  virtual ~moLine();
342 
343 };
344 
346  public:
347  moLineSegments();
348  virtual ~moLineSegments();
349 
350 };
351 
353  public:
354  moPoints( const moGeometry& p_geometry, const moMaterial& p_material ) : moObject3D(p_geometry, p_material) {
355 
356  m_Geometry = p_geometry;
357  m_Material = p_material;
358 
359  }
360  moPoints( const moPoints& p_src ) : moObject3D( p_src ) {
361  (*this) = p_src;
362  }
363 
364  moPoints& operator=( const moPoints& p_src ) {
365  m_Geometry = p_src.m_Geometry;
366  m_Material = p_src.m_Material;
367  return (*this);
368  }
369 
370  virtual ~moPoints() {
371  }
372 
373 };
374 
376  public:
377  moLOD();
378  virtual ~moLOD();
379 
380 };
381 
383  public:
384  moSkinnedMesh();
385  virtual ~moSkinnedMesh();
386 
387 };
388 
390  public:
391  moSkeleton();
392  virtual ~moSkeleton();
393 
394 };
395 
396 
398  public:
399  moMesh( const moGeometry& p_geometry, const moMaterial& p_material ) : moObject3D(p_geometry, p_material) {
400 
401  m_Geometry = p_geometry;
402  m_Material = p_material;
403 
404  }
405  moMesh( const moMesh& p_src ) : moObject3D( p_src ) {
406  (*this) = p_src;
407  }
408 
409  moMesh& operator=( const moMesh& p_src ) {
410  m_Geometry = p_src.m_Geometry;
411  m_Material = p_src.m_Material;
412  return (*this);
413  }
414 
415  virtual ~moMesh() {
416  }
417 
418 };
419 
421  public:
422  moShape();
423  virtual ~moShape();
424 
425 };
426 
428  public:
429  moBoxGeometry( float width=1.0, float height=1.0,float depth=1.0, int wsegments=1, int hsegments=1, int dsegments=1 );
430  virtual ~moBoxGeometry();
431 };
432 
434  public:
435  moCircleGeometry( float radius=1.0, float segments=36 );
436  virtual ~moCircleGeometry();
437 };
438 
440  public:
441  moCylinderGeometry( float radiusTop=1.0, float radiusBottom=1.0, float height=1.0, int radiusSegments=20, int heightSegments=1, int openEnded=true, float thetaStart=0, float thetaLength=moMathf::TWO_PI );
442  virtual ~moCylinderGeometry();
443 };
444 
445 
446 
447 
448 
450  public:
452  moPolyhedronGeometry( const moVector3fArray& p_Vertices, const moVector3iArray& p_Faces, float radius=1.0, float detail=0.0 );
453  virtual ~moPolyhedronGeometry();
454 };
455 
457  public:
458  moDodecahedronGeometry( float radius=1.0, float detail=0.0 );
459  virtual ~moDodecahedronGeometry();
460 };
461 
463  public:
464  moIcosahedronGeometry( float radius=1.0, float detail=0.0 );
465  virtual ~moIcosahedronGeometry();
466 };
467 
469  public:
470  moTetrahedronGeometry( float radius=1.0, float detail=0.0 );
471  virtual ~moTetrahedronGeometry();
472 };
473 
475  public:
476  moOctahedronGeometry( float radius=1.0, float detail=0.0 );
477  virtual ~moOctahedronGeometry();
478 };
479 
481  public:
482  moShapeGeometry();
483  virtual ~moShapeGeometry();
484 };
485 
487  public:
488  moPlaneGeometry( float width=1.0, float height=1.0, int widthSegments =1.0, int heightSegments =1.0 );
489  virtual ~moPlaneGeometry();
490 };
491 
493  public:
494  moExtrudeGeometry( moShapeGeometry p_shapes[], const moText& p_options );
495  virtual ~moExtrudeGeometry();
496 };
497 
499  public:
500  moRingGeometry( float innerRadius=0.5, float outerRadius=1.0, int thetaSegments=8, int phiSegments=8, float thetaStart=0.0, float thetaLength=moMathf::TWO_PI );
501  virtual ~moRingGeometry ();
502 };
503 
505  public:
506  moSphereGeometry( float radius=1.0, int widthSegments=8, int heightSegments=8, float phiStart=0.0, float phiLength=moMathf::TWO_PI, float thetaStart=0.0, float thetaLength=moMathf::PI);
507  virtual ~moSphereGeometry ();
508 };
509 
527  public:
528  moTextGeometry( const moText& p_text, const moText& parameters );
529  moTextGeometry( const moText& p_text,
530  float size = 1.0,
531  float height = 1.0,
532  int curveSegments=12,
533  const moText& font="Default",
534  const moText& weight="normal",
535  const moText& style="normal",
536  bool bevelEnabled=false,
537  int bevelThickness=10.0,
538  int bevelSize=8.0 );
539  virtual ~moTextGeometry ();
540 };
541 
550  public:
551  moTubeGeometry( const moPath& path, int segments=64, float radius=1.0, int radiusSegments=8, bool closed=false);
552  virtual ~moTubeGeometry ();
553 };
554 
555 
557  public:
558  moAxis3D( float p_size=1.0 );
559  virtual ~moAxis3D();
560 };
561 
563  public:
564  moBoundingBox3D( const moGeometry& p_geometry );
565  virtual ~moBoundingBox3D();
566 };
567 
568 
570 
574 
575  public:
576  moGuiObject();
577  virtual ~moGuiObject();
578  virtual MOboolean Init( moResourceManager* pResourceManager );
579  virtual MOboolean Finish();
580 
581  protected:
583 
584 };
585 
586 moDeclareExportedDynamicArray( moGuiObject*, moGuiObjectArray);
587 
589 
593 
594  public:
595  moWidget();
596  virtual ~moWidget();
597 
598  virtual void Draw() = 0;
599  virtual void Interaction() = 0;
600  virtual void Update() = 0;
601 
602 };
603 
605 
613 
614  public:
615  moWindow();
616  virtual ~moWindow();
617  virtual MOboolean Init( moResourceManager* pResourceManager, MOfloat x, MOfloat y, MOfloat width, MOfloat height );
618 
619  void SetInfo( moTextArray &pTexts );
620 
621  virtual void Draw();
622  virtual void Interaction();
623  virtual void Update();
624 
625  moTextArray m_Texts;
626 
631 
632 };
633 
635 
644 
645  public:
646  mo3dWidget();
647  virtual ~mo3dWidget();
648 
649  virtual void Draw();
650  virtual void Interaction();
651  virtual void Update();
652 
653 };
654 
656 
663 
664  public:
665 
666  moGUIManager();
667  virtual ~moGUIManager();
668  virtual MOboolean Init();
669  virtual MOboolean Init( MO_HANDLE p_OpHandle, MO_DISPLAY p_Display );
670  virtual MOboolean Finish();
671 
672 
673  moWindow* NewWindow( MOfloat x, MOfloat y, MOfloat width, MOfloat height, moTextHeap &textheap );
674 
675  //moWidget* GetWidget( MOint widgetid );
676 
677  void DisplayInfoWindow( MOfloat x, MOfloat y, MOfloat width, MOfloat height, moTextArray &pTexts );
678  //void DisplayGauge( MOfloat x, MOfloat y, MOfloat width, MOfloat height, MOfloat percent );
679  //void DisplayText( MOfloat x, MOfloat y, moText ptext );
680 
681  //void DisplayText( MOfloat x, MOfloat y, moText ptext );
682  //void DisplayText( MOfloat x, MOfloat y, moText ptext );
683  //void DisplayText( MOfloat x, MOfloat y, moText ptext );
684  //void DisplayText( MOfloat x, MOfloat y, moText ptext );
685 
686  void SetDisplay( MO_DISPLAY p_Display );
687  void SetOpWindowHandle( MO_HANDLE p_OpHandle );
688  void SetVisWindowHandle( MO_HANDLE p_VisHandle );
689 
690  MO_DISPLAY GetDisplay();
691  MO_HANDLE GetOpWindowHandle();
692  MO_HANDLE GetVisWindowHandle();
693 /*
694  HWND GetOpWindowHandle() { return hOpWnd; }
695  HWND GetVisWindowHandle() { return hVisWnd; }
696  */
697 
698 
699  private:
700  /*
701  HWND hOpWnd;
702  HWND hVisWnd;*/
703  MO_DISPLAY m_Display;
704  MO_HANDLE m_OpHandle;
705  MO_HANDLE m_VisHandle;
706 
707  moGuiObjectArray m_GuiObjects;
708 };
709 
710 
711 #endif /* __MO_GUIMANAGER_H__ */
moVector3f m_vLight
Definition: moGUIManager.h:250
Objeto de interface de usuario tipo ventana.
Definition: moGUIManager.h:592
moVector3f moPointf
Definition: moGUIManager.h:39
moPoints & operator=(const moPoints &p_src)
Definition: moGUIManager.h:364
MO_HANDLE m_VisHandle
Definition: moGUIManager.h:705
float m_fTextHSegments
Definition: moGUIManager.h:249
moVector3f m_Scale
Definition: moGUIManager.h:319
virtual const moColorArray & GetColors() const
Definition: moGUIManager.h:163
Recurso ( objeto para cargar y manipular objetos físicos de datos de imágenes, audio, video, 3d, 2d, fuentes, shaders y de cualquier otro tipo extendible por un plugin )
float m_fTextWSegments
Definition: moGUIManager.h:248
virtual MOboolean Finish()
Finaliza el objeto, libera recursos.
Definition: moAbstract.cpp:147
moVector3fArray moColorRGBArray
Definition: moGUIManager.h:73
moVertexArray m_Normals
Definition: moGUIManager.h:192
moGLMatrixf moCameraMatrix
Definition: moGUIManager.h:50
moMatrix3f moFace3
Definition: moGUIManager.h:45
moWidget 3D - objeto tridimensional
Definition: moGUIManager.h:643
#define MOboolean
Definition: moTypes.h:385
MO_DISPLAY m_Display
Definition: moGUIManager.h:703
Matrices para transformaciones en Open GL.
Definition: moGLManager.h:71
virtual const moTCoordArray & GetVerticesUV() const
Definition: moGUIManager.h:155
moColor m_AmbientColor
Definition: moGUIManager.h:272
moVertex3f moPosition
Definition: moGUIManager.h:43
Administrador de recursos GUI.
Definition: moGUIManager.h:662
int m_iPolygonOffsetFactor
Definition: moGUIManager.h:253
moMatrix3< MOfloat > moMatrix3f
moAttribute(void *p_buffer=NULL, long p_itemsize=0, long p_length=0)
Definition: moGUIManager.h:106
virtual ~moMaterial()
Definition: moGUIManager.h:268
virtual ~moMesh()
Definition: moGUIManager.h:415
moObject3D & operator=(const moObject3D &p_src)
Definition: moGUIManager.h:297
moVector3iArray moFaceArray
Definition: moGUIManager.h:78
int m_iPolygonOffsetUnits
Definition: moGUIManager.h:254
moGLMatrixf & operator=(const moGLMatrixf &rkM)
Definition: moGLManager.cpp:68
moDeclareExportedDynamicArray(moAttribute, moAttributeArray)
Clase base abstracta de donde deben derivar los objetos [virtual pura].
Definition: moAbstract.h:191
virtual const moFaceArray & GetFaces() const
Definition: moGUIManager.h:168
virtual MOboolean Init()
Inicializa el objeto.
Definition: moAbstract.cpp:141
moVector3d moPointd
Definition: moGUIManager.h:40
moVertex3f moVertex
Definition: moGUIManager.h:42
moPointArray m_Vertices
Definition: moGUIManager.h:190
#define LIBMOLDEO_API
Definition: moTypes.h:180
#define MOfloat
Definition: moTypes.h:403
moAttributeArray m_Attributes
Definition: moGUIManager.h:202
virtual MOboolean Init()
Base abstracta de los objetos de interface de usuario (GUI).
Definition: moGUIManager.h:573
moResourceManager * m_pResourceManager
Definition: moGUIManager.h:582
moPolygonModes m_PolygonMode
Definition: moGUIManager.h:276
clase de para manejar textos
Definition: moText.h:75
MO_HANDLE m_OpHandle
Definition: moGUIManager.h:704
moPoints(const moPoints &p_src)
Definition: moGUIManager.h:360
moMesh(const moGeometry &p_geometry, const moMaterial &p_material)
Definition: moGUIManager.h:399
moMaterial m_Material
Definition: moGUIManager.h:317
moMatrix3fArray moFace3Array
Definition: moGUIManager.h:79
MOfloat m_Y
Definition: moGUIManager.h:628
moColorRGB moColor
Definition: moGUIManager.h:49
virtual ~moPoints()
Definition: moGUIManager.h:370
virtual void Interaction()
moVector3f m_Rotation
Definition: moGUIManager.h:320
moGeometry m_Geometry
Definition: moGUIManager.h:316
void SetScale(const moPosition &p_scale)
Definition: moGUIManager.h:312
#define MOint
Definition: moTypes.h:388
moPosition m_Center
Definition: moGUIManager.h:67
moGeometryType
Definition: moGUIManager.h:81
moGuiObjectArray m_GuiObjects
Definition: moGUIManager.h:707
moTexture * m_Map
Definition: moGUIManager.h:274
MOfloat * m_VerticesUVBuffer
Definition: moGUIManager.h:197
moColor m_Color
Definition: moGUIManager.h:273
virtual ~moCamera3D()
Definition: moGUIManager.h:59
MOfloat * m_NormalsBuffer
Definition: moGUIManager.h:196
moVector2f moTCoord
Definition: moGUIManager.h:46
virtual void Interaction()=0
moVector2fArray moTCoordArray
Definition: moGUIManager.h:76
clase base para el manejo de una textura
Definition: moTexture.h:78
moVector4f moColorRGBA
Definition: moGUIManager.h:48
Administrador de recursos.
void SetPosition(const moPosition &p_position)
Definition: moGUIManager.h:306
moVector4fArray moColorRGBAArray
Definition: moGUIManager.h:75
moMesh(const moMesh &p_src)
Definition: moGUIManager.h:405
const MOlong PI
Definition: moMath.cpp:44
MOfloat m_X
Definition: moGUIManager.h:627
moVector3fArray moVertexArray
Definition: moGUIManager.h:77
moObject3D(const moGeometry &p_geometry, const moMaterial &p_material)
Definition: moGUIManager.h:285
virtual ~moAttribute()
Definition: moGUIManager.h:107
virtual void Update()=0
lista de textos
Definition: moText.h:306
void SetRotation(const moPosition &p_rotation)
Definition: moGUIManager.h:309
moColorArray m_Colors
Definition: moGUIManager.h:193
float m_fWireframeWidth
Definition: moGUIManager.h:247
The Y component of space.
Definition: moOGLFT.h:78
Base abstracta de base para las geometrías.
Definition: moGUIManager.h:127
MOfloat * m_VerticesBuffer
Definition: moGUIManager.h:195
moVector3i moFace
Definition: moGUIManager.h:44
virtual MOboolean Finish()
moVector3fArray moPointArray
Definition: moGUIManager.h:71
MOfloat m_Width
Definition: moGUIManager.h:629
The X component of space.
Definition: moOGLFT.h:77
virtual void Update()
MOfloat m_Height
Definition: moGUIManager.h:630
virtual void Draw(moEffectState *state, GLuint g_ViewMode)
MOfloat * m_ColorBuffer
Definition: moGUIManager.h:198
virtual ~moObject3D()
Definition: moGUIManager.h:289
moTCoordArray m_VerticesUvs
Definition: moGUIManager.h:191
const moMaterialBase & operator=(const moMaterialBase &p_src)
float offy
Definition: moGUIManager.h:216
moBlendingModes m_Blending
Definition: moGUIManager.h:277
moPosition m_Position
Definition: moGUIManager.h:318
moTextArray m_Texts
Definition: moGUIManager.h:625
moVertex3f moColorRGB
Definition: moGUIManager.h:47
moMesh & operator=(const moMesh &p_src)
Definition: moGUIManager.h:409
moMaterialBase(const moMaterialBase &p_src)
Definition: moGUIManager.h:228
moColor m_SpecularColor
Definition: moGUIManager.h:271
const MOlong TWO_PI
Definition: moMath.cpp:45
moPointf moPoint
Definition: moGUIManager.h:41
moGeometry(const moGeometry &p_src)
Definition: moGUIManager.h:134
Ventana simple.
Definition: moGUIManager.h:612
moGLMatrixf moCamera3DBase
Definition: moGUIManager.h:51
virtual void Draw()=0
moText m_Name
Definition: moGUIManager.h:187
moVector2fArray m_Path
Definition: moGUIManager.h:217
moTCoordArray m_FaceVertexUvs
Definition: moGUIManager.h:201
moPosition m_Position
Definition: moGUIManager.h:66
void * buffer
Definition: moGUIManager.h:111
moMaterial(const moMaterial &p_src)
Definition: moGUIManager.h:264
virtual const moTCoordArray & GetFacesUV() const
Definition: moGUIManager.h:159
moGeometryType GetType() const
Definition: moGUIManager.h:172
moPoints(const moGeometry &p_geometry, const moMaterial &p_material)
Definition: moGUIManager.h:354
virtual const moPointArray & GetVertices() const
Definition: moGUIManager.h:147
moObject3D(const moObject3D &p_src)
Definition: moGUIManager.h:293
moPolygonModes
Modos de dibujado de polígonos.
Definition: moTypes.h:472
moFaceArray m_Faces
Definition: moGUIManager.h:200
virtual const moPointArray & GetNormals() const
Definition: moGUIManager.h:151
MOint m_MapGLId
Definition: moGUIManager.h:275
virtual ~moMaterialBase()
Definition: moGUIManager.h:232
moVector4fArray moColor4fArray
Definition: moGUIManager.h:74
moBlendingModes
Modos de combinación.
Definition: moTypes.h:453
moGeometryType m_Type
Definition: moGUIManager.h:188
moVector3fArray moColorArray
Definition: moGUIManager.h:72
Recurso ( objeto para cargar y manipular objetos físicos de datos de imágenes, audio, video, 3d, 2d, fuentes, shaders y de cualquier otro tipo extendible por un plugin )