10-27-2023, 05:31 PM
Hi,
I've studying Python Fu code, and I came across this function call:
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.
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.