チェンジセット 1781
- コミット日時:
- 2008/11/02 04:58:41 (2 ヶ月前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/Astro/SpotlightFilter/trunk/src/com/borealkiss/filters/Filter.as
r1779 r1781 1 1 /** 2 * Filter class.2 * com.borealkiss.filters.Filter class. 3 3 * 4 * @date 29/10/20084 * @date 01/11/2008 5 5 * @version 1.0 6 6 * @author borealkiss 7 7 * @see http://blog.boreal-kiss.com/ 8 * 9 * MIT License 10 * 11 * Copyright (c) 2008 blog.boreal-kiss.com 12 * 13 * Permission is hereby granted, free of charge, to any person obtaining a copy of 14 * this software and associated documentation files (the "Software"), to deal in 15 * the Software without restriction, including without limitation the rights to 16 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 17 * the Software, and to permit persons to whom the Software is furnished to do so, 18 * subject to the following conditions: 19 * 20 * The above copyright notice and this permission notice shall be included in all 21 * copies or substantial portions of the Software. 22 * 23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 24 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 25 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 26 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 27 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 28 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 29 */ 9 30 package com.borealkiss.filters{ as3/Astro/SpotlightFilter/trunk/src/com/borealkiss/filters/SpotlightData.as
r1779 r1781 1 /** 2 * com.borealkiss.filters.SpotlightData class. 3 * 4 * @date 01/11/2008 5 * @version 1.0 6 * @author borealkiss 7 * @see http://blog.boreal-kiss.com/ 8 * 9 * MIT License 10 * 11 * Copyright (c) 2008 blog.boreal-kiss.com 12 * 13 * Permission is hereby granted, free of charge, to any person obtaining a copy of 14 * this software and associated documentation files (the "Software"), to deal in 15 * the Software without restriction, including without limitation the rights to 16 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 17 * the Software, and to permit persons to whom the Software is furnished to do so, 18 * subject to the following conditions: 19 * 20 * The above copyright notice and this permission notice shall be included in all 21 * copies or substantial portions of the Software. 22 * 23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 24 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 25 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 26 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 27 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 28 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 29 * 30 * Note the original Pixel Bender filter data (also MIT License) by Ryan Phelan. 31 * @see http://www.rphelan.com/2008/10/28/spotlight-pixel-bender-filter/ 32 */ 1 33 package com.borealkiss.filters{ 2 34 import mx.core.ByteArrayAsset; as3/Astro/SpotlightFilter/trunk/src/com/borealkiss/filters/SpotlightFilter.as
r1779 r1781 1 1 /** 2 * SpotlightFilter class.2 * com.borealkiss.filters.SpotlightFilter class. 3 3 * 4 * @date 29/10/20084 * @date 01/11/2008 5 5 * @version 1.0 6 6 * @author borealkiss 7 7 * @see http://blog.boreal-kiss.com/ 8 8 * 9 * Note the original Pixel Bender filter data by Ryan Phelan. 9 * MIT License 10 * 11 * Copyright (c) 2008 blog.boreal-kiss.com 12 * 13 * Permission is hereby granted, free of charge, to any person obtaining a copy of 14 * this software and associated documentation files (the "Software"), to deal in 15 * the Software without restriction, including without limitation the rights to 16 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 17 * the Software, and to permit persons to whom the Software is furnished to do so, 18 * subject to the following conditions: 19 * 20 * The above copyright notice and this permission notice shall be included in all 21 * copies or substantial portions of the Software. 22 * 23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 24 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 25 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 26 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 27 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 28 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 29 * 30 * Note the original Pixel Bender filter data (also MIT License) by Ryan Phelan. 10 31 * @see http://www.rphelan.com/2008/10/28/spotlight-pixel-bender-filter/ 11 32 */
