http://tavmjong.free.fr/INKSCAPE/MANUAL.html
Your mind is what you think it is.
There's an often encountered bug when applying the perspective to groups that have a 'transform' attribute... (for example a text object that has been positioned with the mouse first and later converted to path instead of vice versa).druban wrote:i'm not having any luck in getting the perspective extension to do anything resembling the example
If you tell us which platform you are working on, maybe someone knows and can help… ;-)druban wrote:I have Python31 installed but i am not sure if numpy is included in that. where would i put numpy if i downoaded it?
Code: Select all
LeWitt:~ suv$ python
Python 2.6.2 (r262:71600, Aug 23 2009, 06:02:15)
[GCC 4.0.1 (Apple Inc. build 5493)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import foo
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named foo
>>> import numpy
>>> print numpy.__path__
['/Volumes/blue/mp/Library/Frameworks/Python.framework/Versions/Current/lib/python2.6/site-packages/numpy']
>>> quit()
LeWitt:~ suv$