Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
color wheel in gimp method?
#9
Another way to draw the figure is my new (and very unfinished) plugin Simple parametric curve.

I show first the result:

   

The plugin makes this as two vectors objects as follows:

   

These could then be stroked. Since you already got other solutions, I don't go to details. I just say that the plugin is obtained here (see the first post):

https://www.gimp-forum.net/Thread-Parametric-curves

and to draw the figure you tell the plugin to take inputs from a file. That file must be created before-hand. I draw the above figure with a file with the following contents:

Code:
# Pie. Input file for the plugin Simple parametric curve.

N = 9

center = [500,500]
scale = 300

curve_name = 'Pie'

def function(t):
   return [cos(t),sin(t)]

interval = [0,2*pi]

mark_linesegments = [
                    [[0,0], function(i*2*pi/N)] for i in range(N)
                   ]
Reply


Messages In This Thread
color wheel in gimp method? - by marigolden - 03-12-2020, 03:59 PM
RE: color wheel in gimp method? - by denzjos - 03-12-2020, 04:38 PM
RE: color wheel in gimp method? - by marigolden - 03-12-2020, 04:46 PM
RE: color wheel in gimp method? - by Krikor - 03-12-2020, 08:04 PM
RE: color wheel in gimp method? - by denzjos - 03-14-2020, 02:38 PM
RE: color wheel in gimp method? - by Ofnuts - 03-15-2020, 10:53 AM
RE: color wheel in gimp method? - by denzjos - 03-15-2020, 12:04 PM
RE: color wheel in gimp method? - by rich2005 - 03-12-2020, 08:36 PM
RE: color wheel in gimp method? - by Krikor - 03-12-2020, 09:25 PM
RE: color wheel in gimp method? - by rich2005 - 03-14-2020, 03:22 PM
RE: color wheel in gimp method? - by Ottia Tuota - 03-14-2020, 04:07 PM
RE: color wheel in gimp method? - by Ofnuts - 03-15-2020, 01:36 PM
RE: color wheel in gimp method? - by denzjos - 03-15-2020, 02:35 PM
RE: color wheel in gimp method? - by Ofnuts - 03-15-2020, 05:49 PM
RE: color wheel in gimp method? - by Ofnuts - 03-15-2020, 06:27 PM

Forum Jump: