![]() |
gimp.VectorsBezierStroke documentation? - Printable Version +- Gimp-Forum.net (https://www.gimp-forum.net) +-- Forum: GIMP (https://www.gimp-forum.net/Forum-GIMP) +--- Forum: Extending the GIMP (https://www.gimp-forum.net/Forum-Extending-the-GIMP) +---- Forum: Scripting questions (https://www.gimp-forum.net/Forum-Scripting-questions) +---- Thread: gimp.VectorsBezierStroke documentation? (/Thread-gimp-VectorsBezierStroke-documentation) |
gimp.VectorsBezierStroke documentation? - gasMask - 10-27-2023 Hi, I've studying Python Fu code, and I came across this function call: Code: stroke = gimp.VectorsBezierStroke(vectors, points, 0) My question is, where can I find documentation to this gimp module object, VectorsBezierStroke? I tried a 'help(gimp.VectorsBezierStroke)' command in the console, but the object lacks any '__init__' description as far I can tell. Searching the Gimp Python Documentation page that is online doesn't seen to have any references to this object either. RE: gimp.VectorsBezierStroke documentation? - Ofnuts - 10-27-2023 In the Python console, do help(gimp.VectorsBezierStroke). Otherwise, as usual most of this can also be accessed from the PDB API, so the very scanty description from the help() get a more detailed coverage in the Python procedure browser (gimp-vectors-stroke-*)(with the usual caveats about the auto-generated docs that are initially meant for Scheme). In practice, the really useful calls are:
gimp.VectorsBezierStroke(path,points,closed) is essentially a simplified/friendlier version of new_from_points.
Plenty of examples here: Ofnuts' Gimp path tools downloads RE: gimp.VectorsBezierStroke documentation? - gasMask - 10-28-2023 Thank you kindly for the detailed reply which I find very helpful. |