home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Graphics / picFX / picFX.readme < prev    next >
Text File  |  1999-12-31  |  2KB  |  72 lines

  1. Short:Great CARDWARE image deformer (MUI) 1.1
  2. Author:Maxime Gamboni (gamboni@fastnet.ch)
  3. Uploader:Maxime Gamboni (gamboni@fastnet.ch)
  4. Type:gfx/edit
  5. Replaces: gfx/edit/picFx_Ger.lha
  6. Requires:guigfx.library, render.library; look in dev/misc
  7. Requires:Lamp.mcc; look in dev/mui
  8. Version:1.1
  9.  
  10. Have a look at http://intelcom.ch/maxime/
  11.  
  12.  
  13.  
  14. [New since 1.05:
  15. * New & enhanced preference system that does (really) not crash
  16. * New variable system. You can use your variables anywhere in an
  17. expression...
  18. * Crash-bug fixed
  19. ]
  20.  
  21. -*-*-*-*-*-*-
  22.  
  23. This program lets you mix, deform or create picutes using functions.
  24. You can open as many windows as you want, each one can be either an
  25. image or a function.
  26.  
  27. The program calculates your r(x,y) g(x,y) and b(x,y) functions and
  28. writes a pixel of these red/green/blue components. You can refer to
  29. other projects in a formula:
  30. r(2,x,y) = 255-r(1,x,y)
  31. g(2,x,y) = 255-g(1,x,y)
  32. b(2,x,y) = 255-b(1,x,y)
  33. would output a negative version of project number one.
  34.  
  35. r(3,x,y) = (r(1,x,y)+r(2,x,y))/2
  36. g(3,x,y) = (g(1,x,y)+g(2,x,y))/2
  37. b(3,x,y) = (b(1,x,y)+b(2,x,y))/2
  38. would mix projects one and two into project three.
  39.  
  40. r(1,x,y) = x
  41. g(1,x,y) = y
  42. b(1,x,y) = 255-(x+y)/2
  43. would produce a nice spread..
  44.  
  45. This program is completely multi-tasking! Every time a rendering is
  46. started, a new task is created and its priority is a little lower
  47. than the main task, so the main program isn't slowed down when
  48. projects are rendering!
  49.  
  50. Amazingly fast rendering :-))
  51.  
  52. There is a friendly and intuitive user interface using MUI.
  53.  
  54. You have wide control over running projects: you can pause or change
  55. the sub-task priority while it is running directely from the
  56. user-interface. You can also hide windows to avoid cluttering the
  57. screen. Then you won't even remark that the computer is hard working
  58. on those projects :-)
  59.  
  60. Locale support; available languages (the guide is English-only):
  61. - Deutsch
  62. - English
  63. - Français
  64. [Any translator is welcome! Please send me your translations!]
  65.  
  66. Although this program is postcardware, it has no restriction. You can
  67. unpack and use it without limitation now!
  68.  
  69. Written in AmigaE, full source-code is included (MUI custom classes
  70. with custom methods and attributes, Exec lists, tasks and ports,
  71. dynamic assembly code generation, iff file creation/parsing... are used).
  72.