On Sat, Nov 10, 2007 at 11:51:44AM +0000, Sandro Santilli wrote:

> +++ backend/render_handler_ogl.cpp    10 Nov 2007 11:51:42 -0000      1.88
> @@ -206,7 +206,7 @@
>  ///      drawn from a to b.
>  point middle(const point& a, const point& b)
>  {
> -  return point(0.5 * (a.m_x + b.m_x), 0.5 * (a.m_y + b.m_y));
> +  return point(0.5 * (a.x + b.x), 0.5 * (a.y + b.y));
>  }

Just an hint, with the new Point2d class the above would be equivalent to:

     return point(a, b, 0.5);

--strk;


_______________________________________________
Gnash-commit mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnash-commit

Reply via email to