Difference between revisions of "Python modules for extensions"

From Inkscape Wiki
Jump to navigation Jump to search
m (Use better language)
 
(26 intermediate revisions by 8 users not shown)
Line 1: Line 1:
[[Category:Extensions]]
[[Category:Extensions]]


== inkex.py ==
This page contained API documentation for various modules in inkex. A more complete API documentation is available in the [https://inkscape.gitlab.io/extensions/documentation/source/index.html documentation of the extensions repository.]
 
This module encapsulates the basic behavior of a script extension, allowing the author to concentrate on manipulating the SVG data. The module provides an '''class Effect()'''. inkex.py was originally designed to provide the Effect (filter) extension type, but has been used for Input/Output extensions simply by overriding additional class methods.
 
=== Methods ===
*effect(): override with document processing code.
*affect(): actuate the script.
*xpathSingle(path): an xpath wrapper to return a single node.
*uniqueId(old_id, make_new_id = True): return an id that is unique in the document given a proposed id.
 
=== Properties ===
 
*document: DOM document
*selected: a list of nodes that were selected in inkscape
*doc_ids: all of the ids used in the document
*options: options passed to the script
 
== simplestyle.py ==
 
== simplepath.py ==
 
== cubicsuperpath.py ==
 
== pturtle.py ==
 
== beziermisc.py ==
 
== cspsubdiv.py ==
 
== ff*.py ==
 
an obscure set of tools for dealing with musical scales.

Latest revision as of 22:06, 10 March 2022


This page contained API documentation for various modules in inkex. A more complete API documentation is available in the documentation of the extensions repository.