- 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
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
////////////////////////////////////////////////////////
|
|
//
|
|
// 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;
|
|
}
|