Merge pull request #736 from lovell/cpp-int-offset

cplusplus: offset coords are int rather than double
This commit is contained in:
John Cupitt 2017-09-14 11:00:20 +01:00 committed by GitHub
commit 9bc2b18140
1 changed files with 2 additions and 2 deletions

View File

@ -307,13 +307,13 @@ public:
return( vips_image_get_yres( get_image() ) );
}
double
int
xoffset()
{
return( vips_image_get_xoffset( get_image() ) );
}
double
int
yoffset()
{
return( vips_image_get_yoffset( get_image() ) );