Re: [Matplotlib-users] Matplotlib and Cpp

2012-04-29 Thread Benjamin Root
On Sunday, April 29, 2012, Ignas Anikevičius wrote: > Hello everybody, > > On 28 April 2012 12:13, julien tayon 'cvml', 'jul...@tayon.net');>> wrote: > >> First cpp stands for C Pre Processor, this tool usually does macro >> substitution in c, objective c, c++. Hence Cpp in the object is pretty >

Re: [Matplotlib-users] Matplotlib and Cpp

2012-04-29 Thread Ignas Anikevičius
Hello everybody, On 28 April 2012 12:13, julien tayon wrote: > First cpp stands for C Pre Processor, this tool usually does macro > substitution in c, objective c, c++. Hence Cpp in the object is pretty > much confusing when it seems to be talking about C++. > Sorry for my ignorance, will know

Re: [Matplotlib-users] how to create a collections.LineCollection instance?

2012-04-29 Thread Chao YUE
I should use mat.collections.LineCollection([line]) cheers, Chao 2012/4/29 Chao YUE > Dear all, > > I want to make an example of collections.LineCollection instance. So I have > > In [150]: line > Out[150]: [(0, 0), (0, 1), (1, 1), (1, 0)] > > but I use whatever the following I meet with an As