Hi, A Message to test my subscription to the list if nothing else. Cheers. -- Richard Heyes HTML5 Graphing for IE7, FF, Chrome, Opera and Safari: ...
Richard Heyes
richard.heyes@...
Sep 7, 2008 12:08 pm
420
Hi, For anyone that's interested, here's a real life usage of canvas: http://www.phpguru.org/article_index.php -- Richard Heyes HTML5 Graphing for IE7, FF,...
Richard Heyes
richard.heyes@...
Sep 16, 2008 9:19 am
421
Hi, Does Excanvas work on Interweb Explorer 8? Is it even necessary? -- Richard Heyes HTML5 Graphing for IE7, FF, Chrome, Opera and Safari: ...
Richard Heyes
richard.heyes@...
Sep 16, 2008 9:58 am
422
The graph seems to fail in bar.js with "getScale not defined". Thanks! Jerason Banes...
As far as I know, Canvas is still unsupported in IE8. I have not personally tested it, but excanvas is supposed to work. Unless, that is, you turn on STRICT...
Hi, ... Yeah recent rejigging. Should be fine now though... http://www.phpguru.org/static/rgraph.html Cheers. -- Richard Heyes HTML5 Graphing for IE7, FF,...
Richard Heyes
richard.heyes@...
Sep 16, 2008 6:53 pm
425
... <sigh> ... That will do... :-) -- Richard Heyes HTML5 Graphing for IE7, FF, Chrome, Opera and Safari: http://www.phpguru.org/RGraph...
Richard Heyes
richard.heyes@...
Sep 16, 2008 6:55 pm
426
The "real-world example" you gave (http://www.phpguru.org/article_index.php) still appears to be broken... Thanks,Jerason...
Hi, ... In the words of a very northern Shakespeare, "Bugger me senseless..." Works now. http://www.phpguru.org/article_index.php -- Richard Heyes HTML5...
... Thanks! -- Richard Heyes HTML5 Graphing for IE7, FF, Chrome, Opera and Safari: http://www.phpguru.org/RGraph...
Richard Heyes
richard.heyes@...
Sep 16, 2008 7:48 pm
430
Anyone know of, or possibly even have a 3d engine such as a wolfenstein-like game engine/ renderer that I might use/license for a game I'm working on?...
It would not be hard to develop one, but you might consider talking to this guy: http://www.nihilogic.dk/labs/wolf/ The funny thing about modern technology is...
I've emailed a number of people including this person. Hopefully there's something out there. I'd rather not have to write something from scratch.. -Andrew...
Hi, Anyone have an example of MooCanvas that works? I have a bare bones example that doesn't appear to be working: http://www.phpguru.org/moo/test.html Thanks....
Richard Heyes
richard.heyes@...
Sep 18, 2008 6:55 pm
435
... Moocanvas requires a doctype and UTF-8 encoding: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ...
Hi, Can someone explain the save() and restore() functions? Thanks. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: ...
Richard Heyes
richard.heyes@...
Sep 23, 2008 10:24 am
437
If you're familiar with OpenGL, then these are the same thing as pushing the transformation matrix (i.e. the state) onto the stack with that API. If you're not...
... It helps a lot thanks. So if I draw some stuff, but don't call stroke() to apply it to the canvas, then save(), do some stuff, call restore(), would that...
Richard Heyes
richard.heyes@...
Sep 23, 2008 3:59 pm
439
no, restore doesn't erase the drawing. it acts over the context, allowing you to save, plot a pink line, restore and back drawing black lines again. 2008/9/23...
... save() and restore() do not affect the path at all. So if you do ctx.rect(...); ctx.save(); ctx.beginPath(); ctx.restore(); ctx.stroke(); then the...
... Great, thank you. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.phpguru.org/RGraph...
Richard Heyes
richard.heyes@...
Sep 23, 2008 4:44 pm
442
Hi, Apparently I didn't quite get it - I made an example here: http://www.phpguru.org/RGraph_dev/examples/text.html My understanding is this: 1. We're at 0,0 ...
Richard Heyes
richard.heyes@...
Sep 24, 2008 4:54 pm
443
... I think, it depends on if you are asking about path or position. According to ...
Ok, that's bizarre. Your code actually works in WebKit! (It's not supposed to do that. :P) Your problem is that you're using the pen state via moveTo. The...
... Hmm... not quite :) At context creation, there is no "current point"; all the various path functions do specific things if there is no current point (which...
... // current point is now (0,0); ... translate(100,100); ... So what you're saying is that the path is not affected by the transform matrix until it is...
... Each point/coordinate added to the path is affected by the current transformation matrix at the time that it's added; the matrix is never applied to the...
... Well, thank you. Still don't "get" it. Fortunately I haven't needed save() or restore() yet. Mind you, I wouldn't would I... :-) -- Richard Heyes HTML5...