/usr/share/gimp/2.0/scripts/death-shape-tools.scm is in gimp-plugin-registry 7.20140602ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 | ; Draw tools for selections.
;
; The GIMP -- an image manipulation program
; Copyright (C) 1995 Spencer Kimball and Peter Mattis
;
; Selection glow script for GIMP 2.4
; Copyright (c) 2007 Alexia Death
; Based on Giuseppe Conte Draw shape scripts.
;
; Tags: shapes, selection
;
; Author statement:
; Draws selected shape using current brush and fg color into current selction.
;
; --------------------------------------------------------------------
; Distributed by Gimp FX Foundry project
; --------------------------------------------------------------------
; - Changelog -
;
;
; --------------------------------------------------------------------
;
; This program is free software; you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation; either version 2 of the License, or
; (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a of the GNU General Public License
; along with this program; if not, write to the Free Software
; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (script-fu-make-a-polygon image
drawable
seg
rotation
randme
usebrush
on-new-layer)
(if (= (car (gimp-selection-is-empty image)) TRUE)
(begin
(gimp-message _"The current image doesn't have a selection.\n\nThis script creates a shape in \nSELECTED AREA of the image."))
(begin
(if (= randme TRUE) (set! rotation (rand 360)))
(let* (
;(active-selection (car (gimp-selection-save image)))
(selection-bounds (gimp-selection-bounds image))
(radius)
(select-offset-x (cadr selection-bounds))
(select-offset-y (caddr selection-bounds))
(select-width (- (cadr (cddr selection-bounds)) select-offset-x))
(select-height (- (caddr (cddr selection-bounds)) select-offset-y))
(origin-x (round (/ select-width 2)))
(origin-y (round (/ select-height 2)))
(angstep (* (/ 360 seg) (/ 3.14 180)))
(radrot (* rotation (/ 3.14 180)))
(spoints (* 2 (+ seg 1)) ) ;we will have that many drawpoints, x and y to calc.
(segment (cons-array spoints 'double))
(cnts 0)
(drawlayer 0)
)
(gimp-selection-none image) ;destroying the selection is better because then there is no risk of cuting on rotate.(make it optional?)
;Start an undo group so the process can be undone with one undo
(gimp-image-undo-group-start image)
(if (= on-new-layer TRUE)
(begin
(set! drawlayer (car (gimp-layer-new image
(car (gimp-image-width image))
(car (gimp-image-height image))
RGBA-IMAGE
_"polygon layer"
100
NORMAL-MODE)))
(gimp-drawable-fill drawlayer TRANSPARENT-FILL)
(gimp-image-add-layer image drawlayer -1)
)
(set! drawlayer drawable)
)
;We need to calculate radius and origin cordinates.
(if (> select-width select-height) (set! radius origin-y) (set! radius origin-x))
(set! radius (- radius (round (* 0.15 radius)))) ;saving 15% for feather, brushes etc...
;Time to calc.
(while (< cnts spoints) ;Filling the point array
(aset segment cnts (+ select-offset-x (+ (* radius (cos radrot)) origin-x)))
(aset segment (+ cnts 1) (+ select-offset-y (+ (- (* radius (sin radrot))) origin-y)))
(set! radrot (+ angstep radrot))
(set! cnts (+ cnts +2))
);end while
(if (= usebrush TRUE)
(gimp-paintbrush drawlayer 0 spoints segment 0 0) (gimp-pencil drawable spoints segment )
)
;Finish the undo group for the process
(gimp-image-undo-group-end image)
(gimp-displays-flush)
)
)
)
)
(script-fu-register "script-fu-make-a-polygon"
_"Make a Polygon..."
_"Makes any regular polygon inside the current selection using current fg color and brush. Use Ctrl-F to repeat the script while making new selections. It's FUN :)"
"Alexia Death"
"Alexia Death"
"18.11.2007"
"RGB RGBA GRAY GRAYA"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-ADJUSTMENT "Segments" '(3 0 9999 1 10 0 1)
SF-ADJUSTMENT "Rotation" '(0 0 360 1 10 0 0)
SF-TOGGLE "Random rotation" TRUE
SF-TOGGLE "Use brush instead of pencil" TRUE
SF-TOGGLE "Draw on new layer" FALSE)
(script-fu-menu-register "script-fu-make-a-polygon"
"<Image>/FX-Foundry/Shapes")
;Make a Star :D
(define (script-fu-make-a-star image
drawable
seg
rotation
posrat; secondary point postion between primary points
plen ; splike ratio to star
randme
usebrush
on-new-layer)
(if (= (car (gimp-selection-is-empty image)) TRUE)
(begin
(gimp-message _"The current image doesn't have a selection.\n\nThis script creates a shape in \nSELECTED AREA of the image."))
(begin
(if (= randme TRUE) (set! rotation (rand 360)))
(let* (
;(active-selection (car (gimp-selection-save image)))
(selection-bounds (gimp-selection-bounds image))
(radius)
(select-offset-x (cadr selection-bounds))
(select-offset-y (caddr selection-bounds))
(select-width (- (cadr (cddr selection-bounds)) select-offset-x))
(select-height (- (caddr (cddr selection-bounds)) select-offset-y))
(origin-x (round (/ select-width 2)))
(origin-y (round (/ select-height 2)))
(angstep (* (/ 360 seg) (/ 3.14 180)))
(halfstep (/ angstep (/ 100 posrat)))
(radrot (* rotation (/ 3.14 180)))
(spoints (* (* 2 (+ seg 1)) 2) ) ;we will have that many drawpoints, x and y to calc.
(segment (cons-array spoints 'double))
(cnts 0)
(drawlayer 0)
)
(gimp-selection-none image) ;destroying the selection is better because then there is no risk of cuting on rotate.(make it optional?)
;Start an undo group so the process can be undone with one undo
(gimp-image-undo-group-start image)
(if (= on-new-layer TRUE)
(begin
(set! drawlayer (car (gimp-layer-new image
(car (gimp-image-width image))
(car (gimp-image-height image))
RGBA-IMAGE
_"star layer"
100
NORMAL-MODE)))
(gimp-drawable-fill drawlayer TRANSPARENT-FILL)
(gimp-image-add-layer image drawlayer -1)
)
(set! drawlayer drawable)
)
;We need to calculate radius and origin cordinates.
(if (> select-width select-height) (set! radius origin-y) (set! radius origin-x))
(set! radius (- radius (round (* 0.15 radius)))) ;saving 15% for feather, brushes etc...
;Time to calc.
(while (< cnts spoints) ;Filling the point array
(aset segment cnts (+ select-offset-x (+ (* radius (cos radrot)) origin-x)))
(aset segment (+ cnts 1) (+ select-offset-y (+ (- (* radius (sin radrot))) origin-y)))
(aset segment (+ cnts 2) (+ select-offset-x (+ (* (* radius (/ plen 100)) (cos (+ radrot halfstep))) origin-x)))
(aset segment (+ cnts 3) (+ select-offset-y (+ (- (* (* radius (/ plen 100)) (sin (+ radrot halfstep)))) origin-y)))
(set! radrot (+ angstep radrot))
(set! cnts (+ cnts 4))
);end while
(if (= usebrush TRUE)
(gimp-paintbrush drawlayer 0 spoints segment 0 0) (gimp-pencil drawable spoints segment )
)
;Finish the undo group for the process
(gimp-image-undo-group-end image)
(gimp-displays-flush)
)
)
)
)
(script-fu-register "script-fu-make-a-star"
_"Make a Star..."
_"Makes a star with any number of tips inside the current selection using current fg color and brush. Use Ctrl-F to repeat the script while making new selections. It's FUN :)"
"Alexia Death"
"Alexia Death"
"18.11.2007"
"RGB RGBA GRAY GRAYA"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-ADJUSTMENT "Segments" '(5 0 9999 1 10 0 1)
SF-ADJUSTMENT "Rotation" '(0 0 360 1 10 0 0)
SF-ADJUSTMENT "Inner point position" '(50 1 100 1 10 0 0)
SF-ADJUSTMENT "Spike length ratio" '(10 1 100 1 10 0 0)
SF-TOGGLE "Random rotation" TRUE
SF-TOGGLE "Use brush instead of pencil" TRUE
SF-TOGGLE "Draw on new layer" FALSE)
(script-fu-menu-register "script-fu-make-a-star"
"<Image>/FX-Foundry/Shapes")
;Some shortcut functions to stars and polygons.
(define (script-fu-make-a-common-star image
drawable)
(script-fu-make-a-star image drawable 5 0 50 20 TRUE TRUE FALSE)
)
(script-fu-register "script-fu-make-a-common-star"
_"5 Point Star"
_"Makes an ordinary star shape inside the selection on current layer, no questions asked"
"Alexia Death"
"Alexia Death"
"18.11.2007"
"RGB RGBA GRAY GRAYA"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0)
(script-fu-menu-register "script-fu-make-a-common-star"
"<Image>/FX-Foundry/Shapes/Presets")
(define (script-fu-make-a-triangle image
drawable)
(script-fu-make-a-polygon image drawable 3 0 FALSE TRUE FALSE)
)
(script-fu-register "script-fu-make-a-triangle"
_"Triangle"
_"Makes an ordinary triangle inside the selection on current layer, no questions asked"
"Alexia Death"
"Alexia Death"
"18.11.2007"
"RGB RGBA GRAY GRAYA"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0)
(script-fu-menu-register "script-fu-make-a-triangle"
"<Image>/FX-Foundry/Shapes/Presets")
(define (script-fu-make-a-square image
drawable)
(script-fu-make-a-polygon image drawable 4 0 FALSE TRUE FALSE)
)
(script-fu-register "script-fu-make-a-square"
_"Square"
_"Makes an ordinary square inside the selection on current layer, no questions asked"
"Alexia Death"
"Alexia Death"
"18.11.2007"
"RGB RGBA GRAY GRAYA"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0)
(script-fu-menu-register "script-fu-make-a-square"
"<Image>/FX-Foundry/Shapes/Presets")
(define (script-fu-make-a-pentagon image
drawable)
(script-fu-make-a-polygon image drawable 5 0 FALSE TRUE FALSE)
)
(script-fu-register "script-fu-make-a-pentagon"
_"Pentagon"
_"Makes an ordinary pentagon inside the selection on current layer, no questions asked"
"Alexia Death"
"Alexia Death"
"18.11.2007"
"RGB RGBA GRAY GRAYA"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0)
(script-fu-menu-register "script-fu-make-a-pentagon"
"<Image>/FX-Foundry/Shapes/Presets")
|