1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
  
     | 
    
      ////////////////////////////////////////////////////////
//
// GEM - Graphics Environment for Multimedia
//
// Implementation file
//
// Copyright (c) 2002-2011 IOhannes m zmölnig. forum::für::umläute. IEM. zmoelnig@iem.at
//	zmoelnig@iem.kug.ac.at
//  For information on usage and redistribution, and for a DISCLAIMER
//  *  OF ALL WARRANTIES, see the file, "GEM.LICENSE.TERMS"
//
//  this file has been generated...
////////////////////////////////////////////////////////
#include "GEMglLineWidth.h"
CPPEXTERN_NEW_WITH_ONE_ARG ( GEMglLineWidth , t_floatarg, A_DEFFLOAT);
/////////////////////////////////////////////////////////
//
// GEMglViewport
//
/////////////////////////////////////////////////////////
// Constructor
//
GEMglLineWidth :: GEMglLineWidth	(t_floatarg arg0=0) :
		width(static_cast<GLfloat>(arg0))
{
	m_inlet[0] = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("width"));
}
/////////////////////////////////////////////////////////
// Destructor
//
GEMglLineWidth :: ~GEMglLineWidth () {
inlet_free(m_inlet[0]);
}
/////////////////////////////////////////////////////////
// Render
//
void GEMglLineWidth :: render(GemState *state) {
	glLineWidth (width);
}
/////////////////////////////////////////////////////////
// Variables
//
void GEMglLineWidth :: widthMess (t_float arg1) {	// FUN
	width = static_cast<GLfloat>(arg1);
	setModified();
}
/////////////////////////////////////////////////////////
// static member functions
//
void GEMglLineWidth :: obj_setupCallback(t_class *classPtr) {
	 class_addmethod(classPtr, reinterpret_cast<t_method>(&GEMglLineWidth::widthMessCallback),  	gensym("width"), A_DEFFLOAT, A_NULL);
};
void GEMglLineWidth :: widthMessCallback (void* data, t_floatarg arg0){
	GetMyClass(data)->widthMess ( static_cast<t_float>(arg0));
}
 
     |