... My Canvastastic library provides an API for doing low-poly 3D via the 2D canvas context, although it's a higher-level API than OpenGL: ...
351
Philip Taylor
excors_y
Feb 26, 2007 1:47 pm
... There's been some initial experimental code in the Mozilla tree for a while, at http://lxr.mozilla.org/mozilla/source/extensions/canvas3d/ - you have to...
353
Vladimir Vukicevic
vvukicevic
Mar 1, 2007 5:36 am
... Hey, that's pretty awesome! That is, both your example and the fact that you were able to build the canvas3d extension :) Getting that out is sitting at...
355
Matthew Hagston
matthew_hagston
Mar 7, 2007 4:10 pm
Stupid spammers! die die die! Spammers should be hung from the highest tree!...
356
Andrew
triptych999
Mar 7, 2007 4:26 pm
I've changed the setting for this group to moderated membership. That means anyone can still join, but I have to approve their membership. It's more of a pain...
357
Andrew
triptych999
Mar 7, 2007 4:35 pm
User has been banned, removed and the email deleted from the mailing list. Spammers will not be tolerated!!...
358
Mario Giorno
pariahstudio
Mar 7, 2007 6:30 pm
Andrew, Thanks. I know it's a pain. I moderate the westphillyfreecycle Yahoo! group. The spam and unrelated posts are a pain in the backside, but it's worth...
359
tml
firstoneonsun
Mar 10, 2007 2:39 pm
Hi, I have a big canvas which is clipped and put inside a smaller div so it looks similar to google maps. User can move the canvas around by holding mouse...
360
Matthew Hagston
matthew_hagston
Mar 12, 2007 2:55 pm
... I don't run linux so can't help you much there. It may help others answer your question though if you post your code....
364
Matthew Hagston
matthew_hagston
Mar 16, 2007 4:09 pm
It's drawing the first piece of track just fine, but when i go to draw the second piece of track it only draws a small corner and doesn't draw the whole image....
365
Matthew Hagston
matthew_hagston
Mar 16, 2007 4:51 pm
Note: if i tell it to draw twice, like this ... ctx.drawImage(track.img,-19,-122); // draw track with offset, centered around startpoint ...
366
mc_murlock
Mar 19, 2007 10:47 am
Hi, I'm trying to use canvas with image (size 1000x800) (using XulRunner). My aim is to allow user to select part of picture : highlighting the selection, I'm...
367
Mathieu HENRI
p01_opera
Mar 19, 2007 11:34 am
FYI this can be done easily without Canvas, but since you ask on a Canvas-related group, here is my take: Why don't you simply set the image as the (CSS)...
368
Philip Taylor
excors_y
Mar 20, 2007 11:03 pm
... It would probably be useful to work out where the bottleneck is. If you comment out the drawImage, does it go much faster? If you comment out the...
369
sean_imler
Apr 4, 2007 1:03 am
Lines 505 and 506 of excanvas.js: // TODO: Following is broken for curves due to // move to proper paths. Has anyone come across this and know of a...
370
Andrew
triptych999
Apr 4, 2007 5:22 pm
http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2007-March/010129.html It looks like Apple is claiming IP rights over the canvas specification. Does that...
371
brendaneich
Apr 4, 2007 6:58 pm
... http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2007-March/010129.html ... No, it means the WHATWG (I'm a founding member) is not a legal entity and...
372
Andrew
triptych999
May 16, 2007 2:00 pm
I wonder what the chances are for there being a canvas in IE8 - now that the W3C is looking into HTML5. What are folks here doing to account for IE? Is...
373
Jerason Banes
thewiirocks
May 16, 2007 3:18 pm
Hi All! This is my first post here after a long period of lurking, so apologies if my response has that "new poster" smell about it. ;-) I have strong doubts...
374
Vladimir Vukicevic
vvukicevic
May 16, 2007 5:41 pm
Howdy, I agree with Jerason -- I wouldn't hold my breath for canvas (or really, any WHATWG or any modern-web specs) in IE8. Microsoft seems to be pushing the...
375
Seldo V
laurie.voss
May 17, 2007 6:08 am
Flash is certainly an interesting possibility for canvas support in IE -- I don't think Java would be; its performance in a browser has always been suspect. L....
376
Jerason Banes
thewiirocks
May 17, 2007 3:30 pm
If you're referring to the time it takes to load the JVM, then I agree that there is an issue. A Java-based canvas is therefore more useful when the Canvas in...
377
Andrew
triptych999
May 18, 2007 4:54 pm
I for one would love to contribute to building a canvas implementation in Flash. I first wonder if anyone is already working on a project like this and second...
378
Stefan Haustein
dukoids
May 19, 2007 1:24 am
Hi, I have started working on a Java version (rhinocanvas.sf.net), but I agree that for the browser flash probably makes more sense (installed base, startup...
379
ursmartini
May 21, 2007 6:59 am
Hello! I created a small canvas-app where you can add some photos to and then play around with size, transparency and position using prototype,...
380
Jerason Banes
thewiirocks
May 24, 2007 3:17 pm
Hi All! As per our discussion, I've done up a proof-of-concept Java shim for the CANVAS tag in IE. This is different from Stefan's excellent experiment in that...
381
Stefan Haustein
dukoids
May 24, 2007 4:23 pm
Hi Jerason, tetris looks really great! If you need some motivating examples for implementing the path stuff: http://minijoe.com/samples/games/canvasoids.html ...
382
Jerason Banes
thewiirocks
May 24, 2007 5:02 pm
Hi Stefan, tetris looks really great! ... Thanks for the encouragement! I don't really need any motivation to develop the rest of the APIs, but those examples...
383
Stefan Haustein
dukoids
May 24, 2007 8:18 pm
... Well that was what I thought.... But there is definitely some stuff in Canvas 2D that is not covered by Graphics2D (The gradient fill as far as I...
384
Philip Taylor
excors_y
May 25, 2007 10:42 pm
... For anyone who's trying to make a compliant implementation, I'll point out my tests at http://canvex.lazyilluminati.com/tests/tests/ which are incomplete...