[whatwg] Fwd: Should Paths be First Class Citizens?

Forgive me if this shows up twice on the list. I?m new at this, and I
believe I sent the original to the wrong address.

---------- Forwarded message ----------
From: David Geary <david.mark.geary@gmail.com>
Date: Wed, Aug 31, 2011 at 11:48 AM
Subject: Should Paths be First Class Citizens?
To: whatwg at whatwg.org


I?ve implemented some polygon objects for my book that I can drag around in
a canvas. I detect mouse clicks in the polygons with the isPointInPath()
method. Here?s a simple code snippet that detects mouse clicks in a set of
polygons (dnd code is too lengthy for this purpose):

context.canvas.onmousedown = function (e) {
   var loc = windowToCanvas(context.canvas, e);

   polygons.forEach( function (polygon) {  // polygons is an array of
polygon objects
      polygon.createPath();  // my polygons have a createPath() method

      if (context.isPointInPath(loc.x, loc.y)) {
         alert('mouse clicked in polygon');
      }
   });
}

Notice that I have to recreate each path for every polygon.
Polygon.createPath() is implemented with beginPath()...moveTo()...repeated
calls to lineTo()...and finally...closePath().

It seems to me that it would be great if the Canvas context provided two new
methods: Path getPath(), which would return a path object representing the
context?s current path, and setPath(Path), which would set the current path.

Those two methods seem like they?d be easy for UAs to implement. It also
seems like they would, under certain circumstances, give a significant boost
to performance. If I have thousands of polygons, for example, I must be
paying some price for all that path building.


David
Author of Core HTML5 Canvas (corehtml5canvas.com)

Received on Wednesday, 31 August 2011 10:54:57 UTC