- Reestructuración de ficheros y directorios general
- merge v0.01 --> Añadido fileselector - Añadidas fuentes de Gem y Pure Data - pix2jpg incluído en Gem. Archivos de construcción de Gem modificados. - Añadido fichero ompiling.txt con instrucciones de compilación
This commit is contained in:
parent
c9adfd020b
commit
e85d191b46
3100 changed files with 775434 additions and 3073 deletions
48
Gem/src/Base/GemVertex.cpp
Normal file
48
Gem/src/Base/GemVertex.cpp
Normal file
|
@ -0,0 +1,48 @@
|
|||
////////////////////////////////////////////////////////
|
||||
//
|
||||
// GEM - Graphics Environment for Multimedia
|
||||
//
|
||||
// zmoelnig@iem.kug.ac.at
|
||||
//
|
||||
// Implementation file
|
||||
//
|
||||
// Copyright (c) 1997-1999 Mark Danks.
|
||||
// Copyright (c) Günther Geiger.
|
||||
// Copyright (c) 2001-2011 IOhannes m zmölnig. forum::für::umläute. IEM. zmoelnig@iem.at
|
||||
//
|
||||
// For information on usage and redistribution, and for a DISCLAIMER OF ALL
|
||||
// WARRANTIES, see the file, "GEM.LICENSE.TERMS" in this distribution.
|
||||
//
|
||||
/////////////////////////////////////////////////////////
|
||||
|
||||
#include "GemVertex.h"
|
||||
#include "Gem/Cache.h"
|
||||
|
||||
/////////////////////////////////////////////////////////
|
||||
//
|
||||
// GemVertex
|
||||
//
|
||||
/////////////////////////////////////////////////////////
|
||||
// Constructor
|
||||
//
|
||||
/////////////////////////////////////////////////////////
|
||||
GemVertex :: GemVertex()
|
||||
{}
|
||||
|
||||
/////////////////////////////////////////////////////////
|
||||
// Destructor
|
||||
//
|
||||
/////////////////////////////////////////////////////////
|
||||
GemVertex :: ~GemVertex()
|
||||
{
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////
|
||||
// setModified
|
||||
//
|
||||
/////////////////////////////////////////////////////////
|
||||
void GemVertex :: setModified()
|
||||
{
|
||||
GemBase::setModified();
|
||||
if(m_cache)m_cache->vertexDirty = 1;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue