Finally finished making all the functions that I will eventually bind to the SFML::Image class. To tired right now, I'll continue tomorrow.

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1682 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
groogy 2010-11-20 00:44:23 +00:00
parent a80339f668
commit a4925aab38
4 changed files with 294 additions and 9 deletions

View file

@ -51,6 +51,48 @@ VALUE Rect_ForceType( VALUE someValue )
}
}
VALUE Rect_GetLeft( VALUE self )
{
static ID id = rb_intern( "left" );
return rb_funcall( self, id, 0 );
}
VALUE Rect_GetTop( VALUE self )
{
static ID id = rb_intern( "top" );
return rb_funcall( self, id, 0 );
}
VALUE Rect_GetWidth( VALUE self )
{
static ID id = rb_intern( "width" );
return rb_funcall( self, id, 0 );
}
VALUE Rect_GetHeight( VALUE self )
{
static ID id = rb_intern( "height" );
return rb_funcall( self, id, 0 );
}
VALUE Rect_SetLeft( VALUE self, VALUE aVal )
{
static ID id = rb_intern( "left=" );
return rb_funcall( self, id, 1, aVal );
}
VALUE Rect_SetTop( VALUE self, VALUE aVal )
{
static ID id = rb_intern( "top=" );
return rb_funcall( self, id, 1, aVal );
}
VALUE Rect_SetWidth( VALUE self, VALUE aVal )
{
static ID id = rb_intern( "width=" );
return rb_funcall( self, id, 1, aVal );
}
VALUE Rect_SetHeight( VALUE self, VALUE aVal )
{
static ID id = rb_intern( "height=" );
return rb_funcall( self, id, 1, aVal );
}
/* Internal function
* Will copy the x and y from aSource to self.
*/