[etoys-dev] Etoys Inbox: Etoys-kfr..100.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Nov 7 13:48:19 EST 2011


A new version of Etoys was added to project Etoys Inbox:
http://source.squeak.org/etoysinbox/Etoys-kfr..100.mcz

==================== Summary ====================

Name: Etoys-kfr..100
Author: kfr.
Time: 7 November 2011, 7:47:46 pm
UUID: 31f0e957-ce4a-6b48-af57-2d99a2b5fa6b
Ancestors: Etoys-kfr..99

Add fish eye and whirl effects

=============== Diff against Etoys-kfr..99 ===============

Item was added:
+ ----- Method: Player>>fishEye: (in category 'sketch filters') -----
+ fishEye: aNumber
+ 	self sendMessageToCostume: #filtersAdd: with: { #fishEye:form: . aNumber}!

Item was added:
+ ----- Method: Player>>whirl: (in category 'sketch filters') -----
+ whirl: aNumber
+ 	self sendMessageToCostume: #filtersAdd: with: { #whirl:form: . aNumber}!

Item was changed:
  ----- Method: SketchMorph class>>additionsToViewerCategoryGraphicsFilters (in category '*eToys-scripting') -----
  additionsToViewerCategoryGraphicsFilters
  	"Answer a list of (<categoryName> <list of category specs>) pairs that characterize the phrases this kind of morph wishes to add to various Viewer categories."
  
  	^ #(
  #'graphics filtrers' 
  (
  (command hueShift: 'Shift the hue of the pictures colors. -180 to 180' Number)
  (command brightnessShift: 'Shift the brightness of the picture -100 to 100' Number)
  (command saturationShift: 'Shift the saturation of the pictures colors -100 to 100' Number)
  (command blur: 'Blur the picture. 1 to 10' Number)
+ (command fishEye: 'Make a fish eye effect on the picture. -10 and up' Number)
+ (command whirl: 'Make a whirl effect on the picture.' Number)
  (command removeFilters 'Remove the picture filters' )
  ))
  
  
  !



More information about the etoys-dev mailing list