transformtool: remove unused function shearvector()

This commit is contained in:
Mikael Magnusson 2012-08-07 10:22:59 +02:00
parent 99f9d4d219
commit 2967e4fbfd
1 changed files with 0 additions and 7 deletions

View File

@ -240,13 +240,6 @@ static inline GimpVector2 rotate2d (GimpVector2 p, gdouble angle) {
return ret;
}
static inline GimpVector2 shearvector (GimpVector2 p, gdouble factor) {
GimpVector2 ret;
ret.x = p.x + p.y * factor;
ret.y = p.y;
return ret;
}
static void
gimp_unified_transform_tool_motion (GimpTransformTool *transform_tool)
{