On Jul 26, 6:47 am, Matthew Fitzgibbons <[EMAIL PROTECTED]> wrote:
> If you're using wx, there is also wx.lib.plot, which I found to be
> _much_ faster than matplotlib in my application, especially when resizing.
Yes. Matplotlib creates beautiful graphics, but are terribly slow on
large data sets
On Jul 25, 4:10 am, King <[EMAIL PROTECTED]> wrote:
> Use python's default GUI tkinter's drawing functions or you can use
> wxPython GUI kit or you can use pyopengl.
> If you are only interested to draw sin waves or math functions that
> you should give try to matlab atwww.mathworks.com
If you're
ly the best
option. I prefer to embed matplotlib in wxPython. wxAgg is an
excellent backend.
For more general 2D graphics, there are several options, including:
- pygame (uses SDL)
- aggdraw module
- pycairo
- pyopengl
- wxPython's device context (ditto for other GUI libraries)
--
http:/
option. I prefer to embed matplotlib in wxPython. wxAgg is an
excellent backend.
For more general 2D graphics, there are several options, including:
- pygame (uses SDL)
- aggdraw module
- pycairo
- pyopengl
- wxPython's device context (ditto for other GUI libraries)
--
http://mail.py
Pierre Dagenais wrote:
What is the easiest way to draw to a window? I'd like to draw something
like sine waves from a mathematical equation.
Newbie to python.
--
http://mail.python.org/mailman/listinfo/python-list
For very simple things, the standard module turtle might be your best bet.
BB
On Fri, Jul 25, 2008 at 2:13 AM, Pierre Dagenais <[EMAIL PROTECTED]> wrote:
> What is the easiest way to draw to a window? I'd like to draw something
> like sine waves from a mathematical equation.
> Newbie to python.
> --
> http://mail.python.org/mailman/listinfo/python-list
>
I'd recommend matp
You can try R cran also. Very powerfull and free. And with R you can use
Rpy, a library R for python and can access to R function and R graph in a
python script.
Other mathematic library exist in python : Matplotlib for exemple.
Summary :
to draw graph easely in python : Rpy lib or Matplotlib. If
On 25 Lug, 08:13, Pierre Dagenais <[EMAIL PROTECTED]> wrote:
> What is the easiest way to draw to a window? I'd like to draw something
> like sine waves from a mathematical equation.
> Newbie to python.
What you are really asking for is what GUI library you should use;
every one allows you to dr
Use python's default GUI tkinter's drawing functions or you can use
wxPython GUI kit or you can use pyopengl.
If you are only interested to draw sin waves or math functions that
you should give try to matlab at www.mathworks.com
--
http://mail.python.org/mailman/listinfo/python-list
What is the easiest way to draw to a window? I'd like to draw something
like sine waves from a mathematical equation.
Newbie to python.
--
http://mail.python.org/mailman/listinfo/python-list
On Jun 17, 3:45 pm, Terrence Brannon <[EMAIL PROTECTED]> wrote:
> Hello, I have written a program to draw a vescica piscis en.wikipedia.org/wiki/Vesica_piscis>
actually, I mis-spelled the term. It should be vesica piscis or vesica
pisces. I put a "c" after the "s" -- vescica --- and that is wrong
On Jun 18, 2:45 am, Terrence Brannon <[EMAIL PROTECTED]> wrote:
> Hello, I have written a program to draw a vescica piscis en.wikipedia.org/wiki/Vesica_piscis>
>
> from turtle import *
>
> def main():
> setup(width=400, height=400)
>
> r = 50
> color("black")
> circle(r)
> colo
On Jun 17, 12:45 pm, Terrence Brannon <[EMAIL PROTECTED]> wrote:
> Hello, I have written a program to draw a vescica piscis en.wikipedia.org/wiki/Vesica_piscis>
>
> from turtle import *
>
> def main():
> setup(width=400, height=400)
>
> r = 50
> color("black")
> circle(r)
> col
On Jun 17, 2:45 pm, Terrence Brannon <[EMAIL PROTECTED]> wrote:
> Hello, I have written a program to draw a vescica piscis en.wikipedia.org/wiki/Vesica_piscis>
>
> from turtle import *
>
> def main():
> setup(width=400, height=400)
>
> r = 50
> color("black")
> circle(r)
> colo
Hello, I have written a program to draw a vescica piscis
from turtle import *
def main():
setup(width=400, height=400)
r = 50
color("black")
circle(r)
color("white")
forward(r)
color("black")
circle(r)
x = raw_input('please enter a string:')
if __name__ == '
On Oct 5, 12:41 pm, Robin Becker <[EMAIL PROTECTED]> wrote:
> Diez B. Roggisch wrote:
> > [EMAIL PROTECTED] wrote:
>
> ...
>
> > You certainly need to get on speed with webdevelopment. Otherwise you will
> > fail miserably.
>
> > There are several options here:
>
> > - rendering a server-side
On Oct 5, 4:28 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > Hi there
>
> > I currently have a Python program outputing to the command line,
> > durations of 'completed Steps' and 'data items' in relation to time
> > i.e.
>
> > --jfh
> >
[EMAIL PROTECTED] wrote:
> On Oct 5, 11:43 am, Bjoern Schliessmann > The above approaches allow you to directly print to the web page.
>
> Would this mean I wouldn't be able to have any fancy graphics
> outputed such as the rectangles I mentioned before with different
> filled in colours?
No, it
Diez B. Roggisch wrote:
> [EMAIL PROTECTED] wrote:
>
...
>
> You certainly need to get on speed with webdevelopment. Otherwise you will
> fail miserably.
>
> There are several options here:
>
> - rendering a server-side image, deliver that embedded in a html-page
>
> - render using html
[EMAIL PROTECTED] wrote:
> Hi there
>
> I currently have a Python program outputing to the command line,
> durations of 'completed Steps' and 'data items' in relation to time
> i.e.
>
>
> --jfh
> -kl//kl started after jfh finished
> % D
On Oct 5, 11:43 am, Bjoern Schliessmann wrote:
> [EMAIL PROTECTED] wrote:
> > Is there any way this web programming can be done in python.
>
> Sure. Minimalistic approaches include using CGI
> (http://docs.python.org/lib/module-cgi.html)
> or using Apache with mod_python directly. There are also
[EMAIL PROTECTED] wrote:
> Is there any way this web programming can be done in python.
Sure. Minimalistic approaches include using CGI
(http://docs.python.org/lib/module-cgi.html)
or using Apache with mod_python directly. There are also web
frameworks for Python, but I don't know much about th
Hi there
I currently have a Python program outputing to the command line,
durations of 'completed Steps' and 'data items' in relation to time
i.e.
--jfh
-kl//kl started after jfh finished
% Ds //new data arrived at this point in time
Dear Fredrik,
Thanks for your answer. yes it means animated on
the screen.
I downloaded Python2.4, pygame and vision, but the
animation is slow, and i cannot set a graphic priority to my program. Someone
suggested PyopenGL.sourceforge, but it seems complicated.
Thanks again
Valerie
--
http
"Peres" wrote:
> As a Python beginner, I feel a bit lost among all possible libraries...
> so I wondered whether soemone could help me find my way... I
> just need to generate animated sequences of 2D primitives (dots
> and lines), as fast as possible, checking the computer clock for
> the time el
Hello,
As a Python beginner, I feel a bit lost among all
possible libraries... so I wondered whether soemone could help me find my way...
I just need to generate animated sequences of 2D primitives (dots and lines), as
fast as possible, checking the computer clock for the time elapsed for eac
26 matches
Mail list logo