It is currently Fri Apr 19, 2024 3:03 pm


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 31 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: Circular Grids script
PostPosted: Wed Apr 20, 2011 10:03 am  (#1) 
Offline
Retired Staff
User avatar

Joined: May 22, 2008
Posts: 6947
Location: Somewhere in GIMP
This is a fun script to work with. You can get it here.

I made chocolate drops with it and used dd's bevel script and color curves on the results, then I made a brush with them.

The script is here in GIMP: <Image> Filters > SambrookJM > Grid - Circular...

Image

_________________
Image
World War IV will be fought with sticks and stones. - Albert Einstein


Share on Facebook Share on Twitter Share on Orkut Share on Digg Share on MySpace Share on Delicious Share on Technorati
Top
 Post subject: Re: Circular Grids script
PostPosted: Wed Apr 20, 2011 1:39 pm  (#2) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
Has Sam added the different sized circles in each layer option yet? :)
Nice drops there O!

They look like wooden backgammon chips to me though.dds script works nicely on them too.

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: Circular Grids script
PostPosted: Wed Apr 20, 2011 3:59 pm  (#3) 
Offline
Global Moderator
User avatar

Joined: Oct 06, 2010
Posts: 4045
Rod: I checked the script and the answer is no, he hasn't updated it yet. I'm fairly certain he'll post an update when he does. I wanted to leave a "Reminder" post, but decided it might be irritating to do that. :)

O: Nice beveled textured circles!

_________________
"In order to attain the impossible, one must attempt the absurd."
~ Miguel de Cervantes


Top
 Post subject: Re: Circular Grids script
PostPosted: Wed Apr 20, 2011 4:34 pm  (#4) 
Offline
GimpChat Member
User avatar

Joined: Jul 04, 2010
Posts: 2253
Location: Retired Moderator Slowly Returning to the Living.
Interesting idea. I have to play with it a little bit, and see what I can use it for.


Attachments:
Holes.jpg
Holes.jpg [ 215.63 KiB | Viewed 5534 times ]

_________________
Artists aren't crazy! We're eccentric! ~G.M. Ross

Image

My Sigs = My Photos
Check out my work at http://www.flickr.com/photos/photomastergreg.
Top
 Post subject: Re: Circular Grids script
PostPosted: Wed Apr 20, 2011 5:27 pm  (#5) 
Offline
GimpChat Member
User avatar

Joined: Mar 02, 2011
Posts: 1850
Location: Michigan
Hey PM not sure, if you just Saved as Jpg for a preview, but I would always use PNG :D

_________________
Image
I'm back I think


Top
 Post subject: Re: Circular Grids script
PostPosted: Wed Apr 20, 2011 5:45 pm  (#6) 
Offline
GimpChat Member
User avatar

Joined: Jul 04, 2010
Posts: 2253
Location: Retired Moderator Slowly Returning to the Living.
I always save a xcf and then save a copy as png or jpg, depending on my mood at the time. :proppeng

_________________
Artists aren't crazy! We're eccentric! ~G.M. Ross

Image

My Sigs = My Photos
Check out my work at http://www.flickr.com/photos/photomastergreg.


Top
 Post subject: Re: Circular Grids script
PostPosted: Thu Apr 21, 2011 2:47 am  (#7) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
Mahvin another excellent addition to the script would be if it had a option to use octagons, hex, square, or diamonds.
I wonder if those shape options would be easy to add to it ourselves.
Then you could make some killer interfaces for music players and what not. :)

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: Circular Grids script
PostPosted: Thu Apr 21, 2011 8:05 am  (#8) 
Offline
Retired Staff
User avatar

Joined: May 22, 2008
Posts: 6947
Location: Somewhere in GIMP
mahvin wrote:
O: Nice beveled textured circles!
:tyspin

Rod wrote:
Nice drops there O!

They look like wooden backgammon chips to me though.dds script works nicely on them too.
:lol Thanks Rod. Well I guess they can serve two purposes.

_________________
Image
World War IV will be fought with sticks and stones. - Albert Einstein


Top
 Post subject: Re: Circular Grids script
PostPosted: Thu Apr 21, 2011 8:42 am  (#9) 
Offline
Script Coder
User avatar

Joined: Jul 14, 2010
Posts: 697
Rod wrote:
Mahvin another excellent addition to the script would be if it had a option to use octagons, hex, square, or diamonds.
I wonder if those shape options would be easy to add to it ourselves.
Then you could make some killer interfaces for music players and what not. :)


I'll leave the selection option to you, but here are the calcs:

replace:
(gimp-ellipse-select theImage xStart yStart circDiam circDiam CHANNEL-OP-REPLACE FALSE FALSE 0)


for squares:
(gimp-rect-select theImage xStart yStart circDiam circDiam CHANNEL-OP-REPLACE FALSE 0)


for diamonds:
(gimp-free-select theImage 8
  (vector
    xStart (+ yStart (* circDiam 0.5))
    (+ xStart (* circDiam 0.5)) yStart
    (+ xStart circDiam) (+ yStart (* circDiam 0.5))
    (+ xStart (* circDiam 0.5)) (+ yStart circDiam)
  )
  CHANNEL-OP-REPLACE TRUE FALSE 0)


for hexs:
(gimp-free-select theImage 12
   (vector xStart (+ yStart (* circDiam 0.5))
     (+ xStart (* circDiam 0.25)) (+ yStart (* circDiam 0.067))
     (+ xStart (* circDiam 0.75)) (+ yStart (* circDiam 0.067))
     (+ xStart circDiam) (+ yStart (* circDiam 0.5))
     (+ xStart (* circDiam 0.75)) (+ yStart (* circDiam 0.933))
     (+ xStart (* circDiam 0.25)) (+ yStart (* circDiam 0.933))
  )
  CHANNEL-OP-REPLACE TRUE FALSE 0)


for octagons:
(gimp-free-select theImage 16
  (vector (+ xStart (* circDiam 0.2929)) yStart
    (+ xStart (* circDiam 0.7071)) yStart
    (+ xStart circDiam) (+ yStart (* circDiam 0.2929))
    (+ xStart circDiam) (+ yStart (* circDiam 0.7071))
    (+ xStart (* circDiam 0.7071)) (+ yStart circDiam)
    (+ xStart (* circDiam 0.2929)) (+ yStart circDiam)
    xStart (+ yStart (* circDiam 0.7071))
    xStart (+ yStart (* circDiam 0.2929))
  )
  CHANNEL-OP-REPLACE TRUE FALSE 0)


(all tested)

-Rob A>

_________________
Image
Fantasy Cartography and Mapping by RobA


Top
 Post subject: Re: Circular Grids script
PostPosted: Thu Apr 21, 2011 9:21 am  (#10) 
Offline
GimpChat Member
User avatar

Joined: Sep 24, 2010
Posts: 12516
Looks cool; also could use G'MIC Polkadots preset to get similar results. Adaptive Voronoi would be cool, but so far no one's taken this challenge so I have to use a command line stand-a-lone (Secord's ImageMagicK program is now broken) to do that. :)

_________________
Lyle

Psalm 109:8

Image


Top
 Post subject: Re: Circular Grids script
PostPosted: Sat Apr 23, 2011 2:55 am  (#11) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
Thanks Rob!
Looks like Sam was already working on it too. :)

http://registry.gimp.org/node/25244

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: Circular Grids script
PostPosted: Sat Apr 23, 2011 6:57 am  (#12) 
Offline
Retired Staff
User avatar

Joined: May 22, 2008
Posts: 6947
Location: Somewhere in GIMP
This isn't what I thought it would be. I was picturing shapes with spaces between them like the circular grid.

These are examples of the script.

Image

_________________
Image
World War IV will be fought with sticks and stones. - Albert Einstein


Top
 Post subject: Re: Circular Grids script
PostPosted: Sat Apr 23, 2011 7:03 am  (#13) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
I think i am going to go ahead and create 4 different scripts one for each shape that Rob showed us.
If i set them up to show in different menu names i think that will work.
Then when i finish and test them ill upload them as a zip for everyone here. :)

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: Circular Grids script
PostPosted: Sat Apr 23, 2011 7:05 am  (#14) 
Offline
GimpChat Member

Joined: Apr 12, 2010
Posts: 5870
cool idea

_________________
My 3D Gallery on Deviantart http://photocomix2.deviantart.com/
Main gallery http://www.flickriver.com/photos/photocomix-mandala/
Mandala and simmetry http://www.flickriver.com/photos/photocomix_mandala/

Image

Mrs Wilbress


Top
 Post subject: Re: Circular Grids script
PostPosted: Sat Apr 23, 2011 7:38 am  (#15) 
Offline
Global Moderator
User avatar

Joined: Oct 06, 2010
Posts: 4045
I renamed all my register entries so I could keep 4 scripts in the menus.

(script-fu-CircleGrid script-fu-HexGrid script-fu-OctagonGrid script-fu-DiamondGrid)

Whenever I obtain a Matrix program installer, I'll make the Scheme program available to all, lol.

Red pill or blue pill. Eeny meanie mynie moe....

Image

_________________
"In order to attain the impossible, one must attempt the absurd."
~ Miguel de Cervantes


Top
 Post subject: Re: Circular Grids script
PostPosted: Sat Apr 23, 2011 7:50 am  (#16) 
Offline
Retired Staff
User avatar

Joined: May 22, 2008
Posts: 6947
Location: Somewhere in GIMP
Cool, mahvin. That's more what I had in mind.

_________________
Image
World War IV will be fought with sticks and stones. - Albert Einstein


Top
 Post subject: Re: Circular Grids script
PostPosted: Sat Apr 23, 2011 8:10 am  (#17) 
Offline
Retired Staff
User avatar

Joined: May 22, 2008
Posts: 6947
Location: Somewhere in GIMP
This one I used 10 for the brush size. It was rough so I did a color select (black) and made a path, then opened a new white layer and path to selection and black. Used it as a layer mask.

The white area around the hexagrams is transparent.

Image

Brush for triangle is 5 and side length 100.

Image

_________________
Image
World War IV will be fought with sticks and stones. - Albert Einstein


Top
 Post subject: Re: Circular Grids script
PostPosted: Sat Apr 23, 2011 3:43 pm  (#18) 
Offline
Script Coder

Joined: Apr 10, 2011
Posts: 532
Here's what I did with it...

Image


Top
 Post subject: Re: Circular Grids script
PostPosted: Sat Apr 23, 2011 5:06 pm  (#19) 
Offline
GimpChat Member

Joined: Feb 06, 2011
Posts: 342
Here is mine :)


Attachments:
File comment: now with small tiles.
circles2a.png
circles2a.png [ 259.23 KiB | Viewed 1830 times ]
File comment: rotoidoscope
circles2.png
circles2.png [ 560.13 KiB | Viewed 1830 times ]
File comment: kalidioscope :)
circles.png
circles.png [ 409.57 KiB | Viewed 1830 times ]
Top
 Post subject: Re: Circular Grids script
PostPosted: Sat Apr 23, 2011 5:36 pm  (#20) 
Offline
GimpChat Member

Joined: Dec 20, 2010
Posts: 174
Location: Wherever the voices in my head tell me I am.
Wow! :kpix

Some really creative results here using the original script and creative adjustments to it by our talented users. Very impressive.

:bigthup


Top
Post new topic Reply to topic  [ 31 posts ]  Go to page 1, 2  Next

All times are UTC - 5 hours [ DST ]


   Similar Topics   Replies 
No new posts Attachment(s) Image transformation to a circular arc

11

No new posts Circular Motion Blur

2

No new posts Attachment(s) GEGL Circular Pixel Stretch.

14

No new posts Attachment(s) Looking for Script Coder to make Script of my VHS effect

2

No new posts Attachment(s) A liitle Start Help with a Script-Fu Script

3



* Login  



Powered by phpBB3 © phpBB Group