
2003-08-09 Henrik Brix Andersen <brix@gimp.org> * gimp/app/widgets/gimpwidgets-utils.[ch]: removed function gimp_menu_path_strip_uline() ... * gimp/libgimpbase/gimputils.[ch]: ... and added it here under the name gimp_strip_uline() * gimp/devel-docs/libgimpbase/libgimpbase-sections.txt: added gimp_strip_uline to gimputils section * gimp/app/plug-in/plug-in.c * gimp/app/widgets/gimpitemfactory.c * gimp/app/widgets/gimptoolbox. * gimp/app/gui/plug-in-menus.c: changed accordingly * gimp/plug-ins/script-fu/script-fu-scripts.c (script_fu_interface): use gimp_strip_uline() to strip mnemonics from script-fu menu paths * gimp/app/gui/vectors-menu.c * gimp/app/gui/templates-menu.c * gimp/app/gui/qmask-menu.c * gimp/app/gui/palettes-menu.c * gimp/app/gui/palette-editor-menu.c * gimp/app/gui/images-menu.c * gimp/app/gui/gradients-menu.c * gimp/app/gui/gradient-editor-menu.c * gimp/app/gui/documents-menu.c * gimp/app/gui/dialogs-menu.c * gimp/app/gui/colormap-editor-menu.c * gimp/app/gui/channels-menu.c * gimp/app/gui/buffers-menu.c * gimp/app/gui/brushes-menu.c * gimp/app/gui/layers-menu.c * gimp/plug-ins/pygimp/plug-ins/clothify.py * gimp/plug-ins/pygimp/plug-ins/shadow_bevel.py * gimp/plug-ins/pygimp/plug-ins/whirlpinch.py * gimp/plug-ins/pygimp/plug-ins/foggify.py * gimp/plug-ins/script-fu/scripts/*.scm * gimp/plug-ins/script-fu/script-fu.c: added mnemonics fixing more of bug #106991 * gimp/app/gui/error-console-menu.c (error_console_menu_update): updated menu item names, added mnemonics * gimp/plug-ins/common/animoptimize.c * gimp/plug-ins/common/animationplay.c: don't prepend every menu entry with "Animation"
88 lines
2.9 KiB
Scheme
88 lines
2.9 KiB
Scheme
;;; line-nova.scm for gimp-1.1 -*-scheme-*-
|
|
;;; Time-stamp: <1998/11/25 13:26:44 narazaki@gimp.org>
|
|
;;; Author Shuji Narazaki <narazaki@gimp.org>
|
|
;;; Version 0.7
|
|
|
|
(define (script-fu-line-nova img drw num-of-lines corn-deg offset variation)
|
|
(let* ((*points* (cons-array (* 3 2) 'double))
|
|
(modulo fmod) ; in R4RS way
|
|
(pi/2 (/ *pi* 2))
|
|
(pi/4 (/ *pi* 4))
|
|
(pi3/4 (* 3 pi/4))
|
|
(pi5/4 (* 5 pi/4))
|
|
(pi3/2 (* 3 pi/2))
|
|
(pi7/4 (* 7 pi/4))
|
|
(2pi (* 2 *pi*))
|
|
(rad/deg (/ 2pi 360))
|
|
(variation/2 (/ variation 2))
|
|
(drw-width (car (gimp-drawable-width drw)))
|
|
(drw-height (car (gimp-drawable-height drw)))
|
|
(drw-offsets (gimp-drawable-offsets drw))
|
|
(old-selection (if (eq? (car (gimp-selection-is-empty img)) TRUE)
|
|
#f
|
|
(car (gimp-selection-save img))))
|
|
(radius (max drw-height drw-width))
|
|
(index 0)
|
|
(dir-deg/line (/ 360 num-of-lines)))
|
|
(define (draw-vector beg-x beg-y direction)
|
|
(define (set-point! index x y)
|
|
(aset *points* (* 2 index) x)
|
|
(aset *points* (+ (* 2 index) 1) y))
|
|
(define (deg->rad rad)
|
|
(* (modulo rad 360) rad/deg))
|
|
(define (set-marginal-point beg-x beg-y direction)
|
|
(let ((dir1 (deg->rad (+ direction corn-deg)))
|
|
(dir2 (deg->rad (- direction corn-deg))))
|
|
(define (aux dir index)
|
|
(set-point! index
|
|
(+ beg-x (* (cos dir) radius))
|
|
(+ beg-y (* (sin dir) radius))))
|
|
(aux dir1 1)
|
|
(aux dir2 2)))
|
|
(let ((dir0 (deg->rad direction))
|
|
(off (+ offset (- (modulo (rand) variation) variation/2))))
|
|
(set-point! 0
|
|
(+ beg-x (* off (cos dir0)))
|
|
(+ beg-y (* off (sin dir0))))
|
|
(set-marginal-point beg-x beg-y direction)
|
|
(gimp-free-select img 6 *points* ADD
|
|
TRUE ; antialias
|
|
FALSE ; feather
|
|
0 ; feather radius
|
|
)))
|
|
|
|
(gimp-undo-push-group-start img)
|
|
(gimp-selection-none img)
|
|
(srand (realtime))
|
|
(while (< index num-of-lines)
|
|
(draw-vector (+ (nth 0 drw-offsets) (/ drw-width 2))
|
|
(+ (nth 1 drw-offsets) (/ drw-height 2))
|
|
(* index dir-deg/line))
|
|
(set! index (+ index 1)))
|
|
(gimp-bucket-fill drw FG-BUCKET-FILL NORMAL 100 0 FALSE 0 0)
|
|
(if old-selection
|
|
(begin
|
|
(gimp-selection-load old-selection)
|
|
;; (gimp-image-set-active-layer img drw)
|
|
;; delete extra channel by Sven Neumann <neumanns@uni-duesseldorf.de>
|
|
(gimp-image-remove-channel img old-selection)))
|
|
(gimp-undo-push-group-end img)
|
|
(gimp-displays-flush)))
|
|
|
|
(script-fu-register
|
|
"script-fu-line-nova"
|
|
_"<Image>/Script-Fu/Render/Line _Nova..."
|
|
"Line Nova. Draw lines with Foreground color from the center of image to the edges. 1st undo cancels bucket-fill. 2nd undo gets orignal selection."
|
|
"Shuji Narazaki <narazaki@gimp.org>"
|
|
"Shuji Narazaki"
|
|
"1997,1998"
|
|
""
|
|
SF-IMAGE "Image" 0
|
|
SF-DRAWABLE "Drawable" 0
|
|
SF-ADJUSTMENT _"Number of Lines" '(200 40 1000 1 1 0 1)
|
|
SF-ADJUSTMENT _"Sharpness (degrees)" '(1.0 0.0 10.0 0.1 1 1 1)
|
|
SF-ADJUSTMENT _"Offset Radius" '(100 0 2000 1 1 0 1)
|
|
SF-ADJUSTMENT _"Randomness" '(30 0 2000 1 1 0 1)
|
|
)
|
|
;;; line-nova.scm ends here
|