similar to: Drawing with rails

Displaying 20 results from an estimated 5000 matches similar to: "Drawing with rails"

2007 Aug 21
12
This is a sad day for interoperability in the Web
Today, Adobe Systems Incorporated announced[1] that they will extend their Flash platform to support the proprietary H.264 and HE-AAC formats. The Xiph.Org Foundation has previously contacted Adobe to consider extending Flash to support the Open Media formats Vorbis, Theora, and Speex. Adobe developers replied by stating it would be unwise as it would increase the file size of the Flash Player,
2007 Aug 21
12
This is a sad day for interoperability in the Web
Today, Adobe Systems Incorporated announced[1] that they will extend their Flash platform to support the proprietary H.264 and HE-AAC formats. The Xiph.Org Foundation has previously contacted Adobe to consider extending Flash to support the Open Media formats Vorbis, Theora, and Speex. Adobe developers replied by stating it would be unwise as it would increase the file size of the Flash Player,
2010 Oct 13
2
Scripting SVG with R
Since now many browsers support (ECMA/Java-)scripted SVG, I am wondering whether there are already any examples of inserting R code into SVG documents (or a Javascript canvas?) either directly, or perhaps more likely through a JavaScript layer, to dynamically generate graphics or make them interactive? I am aware of the excellent packages gridSVG and SVGAnnotation, which facilitate making
2008 Jan 14
15
How to get a Window handle from another app?
Hello, I would like to get a window handle from another app outside of wxRuby and convert it into a wxRuby Window handle so that I can use it as the parent Window for several wxRuby child windows. Basically I want to use the FRAME_FLOAT_ON_PARENT window style so that my wxRuby windows become associated with the outside app kind of like toolbars, e.g., they don''t show up in the
2012 Jul 18
1
convert deldir$delsgs to a X3D IndexedTriangleSet
Anyone knows how to convert a deldir$delsgs to a X3D IndexedTriangleSet? Are there already any functions/packages? [[alternative HTML version deleted]]
2006 Feb 04
1
javascript device for R
Hi, Has anyone started a javascript device for R. I don't see something like that googling or at on http://www.stat.auckland.ac.nz/~paul/R/devices.html For example, using that graphics library : http://www.walterzorn.com/jsgraphics/jsgraphics_e.htm (I cc that message to the author.) ps : this is not a feature request, i will do it. But if someone has started that, let me know. Romain --
2009 Jan 29
2
Accessing R as a Web service (UNCLASSIFIED)
Classification: UNCLASSIFIED Caveats: NONE I am new to R and somewhat to Web server programming. I am a Java programmer, however, and have done quite a bit with X3D (extensible 3D) computer graphics. A statistician that I work with is doing multidimensional scaling (MDS) and provides some x,y,z's which I display using X3D. Currently he is using Permap which more than gets the job done
2008 Feb 08
2
Dynamic resize of drawing canvas and FXImage
How can I use the drawing canvas and its off-screen image buffer, say FXImage, to dynamically resize or have its width and height attributes changed in reply to user interaction with the main window (FXMainWindow)? It seems that whem I put initial values to W and H of the canvas or FXImage, they remain with its initial values no matter what I do whem resizing the main window. -- Ranieri Barros
2005 Jul 31
3
Drawing a graph with vertices and edges using tcl/tk
Dear all; I would like to draw a graph with vertices and edges, and I guess tcl/tk would be appropriate. I don't know tcl/tk but have googled for a 10-page (or so) introduction to 'getting started with tcl/tk in R' but without any luck. - Does anyone know of the existence of such a document or any other web-based material on the subject? - Does anyone have an (informative) piece of
2004 Aug 08
1
[fdo] Inkscape BOF @ Siggraph LOS ANGELES - MON, AUG 9, 4-5 PM
*PLEASE FORWARD* Inkscape: An Open Source Vector Graphics (SVG) Editor Overview Birds of a Feather Meeting in Co-operation with Siggraph 04 at the Los Angeles Convention Center http://www.siggraph.org/s2004/conference/birds/index.php?pageID=conference Monday, 9 August 4 - 5 pm Holiday Inn City Center Santa Monica Room Jon Phillips + Jon Cruz ### Inkscape: Draw Freely.
2023 Mar 08
1
insert hyperlink into svg graphic
On 3/7/23 13:12, Paul Murrell wrote: > Hi > > I think the main issue here is that you are *drawing* text on the > graphics device, so I would only expect to see literal XML text output > in the result. > ''' > > Hope that helps Thank you for your consideration of the matter, but that seems extraordinarily overly-complicated for the results of
2006 Apr 01
1
A bit OT...but here is a nifty Rails sighting.... ;)
According to arstechnica, <http://arstechnica.com/reviews/games/forever.ars>Duke Nukem Forever has been ported to Ruby on Rails and is now rendered with some kind of magic mishmash of svg-canvas and ajax! This truely is an example of the incredible power of a web browser. Any hope for getting Mr. Fowler to add a Recipe for this type of thing in his new book? ;) -------------- next part
2023 Mar 08
1
insert hyperlink into svg graphic
Hi On 8/03/23 15:27, Rusty Travis wrote: > On 3/7/23 13:12, Paul Murrell wrote: >> Hi >> >> I think the main issue here is that you are *drawing* text on the >> graphics device, so I would only expect to see literal XML text output >> in the result. >> ''' >> >> Hope that helps > > Thank you for your consideration of the
2023 Mar 07
1
insert hyperlink into svg graphic
This was actually the first thing that ChatGPT debugged for me. The issue was that I was able to click on the link when I displayed the raw SVG in the browser (you can use that to test whether the syntax is even correct), but not when the svg displays inside a html page with the <img ...> tag. ChatGPT correctly identified the issue and suggested a solution using <object ...> tags
2004 Dec 13
6
Pitching Asterisk
The company I work for is looking at vendors for a PBX, one of the requirements is VoIP. I have been sitting there listening to people pitch very proprietary implementations of VoIP where you are locked in to their hardware, their interface... I know a little bit about asterisk (set up a couple offices with it... run it at home...) and would like to pitch it to this company. Does someone have a
2000 Oct 04
1
Hershey Fonts, PNG, SVG, .. graphics formats
I wonder if we couldn't just use the PNG , SVG, support from the GNU plotutils from which we already have the Hershey scalable vector fonts [-> help(Hershey)] The new plotutils (July 2000) do support these (and will probably even better in the future, i.e., we can build on others people free software. Paul [who built "Hershey" into R], do you think this path is worth pursuing?
2016 Apr 04
2
multiple bar plot annotation text labelling
Readers, The attempt is to create a bar plot with text labels adjacent to each datum value. Data file: 1,3,A 1,8,B 1,1,C 1,9,D 2,5,C 2,4,E 2,2,F 2,0,G testbarplot<-read.csv('data1.csv', header=FALSE) barplot(axes=FALSE, ann=FALSE, horiz=TRUE, testbarplot[,2], ylab= 'group', xlab= '(x values)', space=c(1,0,0,0, 1,0,0,0)) text(testbarplot[,2], testbarplot[,1],
2006 Mar 22
5
hardware accelerated 3D-graphics in Win-XP-domU possible?
Is there any way to make gaming in domU work? It''s not clear to me, if this can be done with open-gl or so. If this is impossible now, is some development planned in this area? Eventually I would wait buying my next pc until the necessary cpu features are available. TIA, martin -- _______________________________________________________________________________ No MS-Word attachments
2009 Jul 30
3
[LLVMdev] LLVM Logo
On Thu, Jul 30, 2009 at 09:40:45AM +0200, Sebastian Redl wrote: > I think it would be best to use Mozilla's way for this. If we have any > skilled vector artists, they could try to recreate the image as a vector > graphic (it is not so complex as to prevent this) which would allow for > free scaling. Actually even if you had an SVG source it would be best to simplify the drawing
2009 Nov 03
1
fill map with gradient: package?
Hi, I'd like to fill an existing svg (or png) map with gradient colors. In detail: The file http://commons.wikimedia.org/wiki/File:Karte_%C3%96sterreich_Bundesl%C3%A4nder.svg should be filled with the population density data from this table: http://de.wikipedia.org/wiki/%C3%96sterreich#Verwaltungsgliederung choosing the right color saturation (or whatever). The final result should be something