チェンジセット 1781: as3/Astro

差分発生行の前後
無視リスト:
コミット日時:
2008/11/02 04:58:41 (2 ヶ月前)
コミッタ:
borealkiss
ログメッセージ:

add license description at /as3/Astro/SpotlightFilter.

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • as3/Astro/SpotlightFilter/trunk/src/com/borealkiss/filters/Filter.as

    r1779 r1781  
    11/** 
    2  * Filter class. 
     2 * com.borealkiss.filters.Filter class. 
    33 *  
    4  * @date        29/10/2008 
     4 * @date        01/11/2008 
    55 * @version 1.0 
    66 * @author      borealkiss       
    77 * @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. 
    829 */ 
    930package 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 */ 
    133package com.borealkiss.filters{ 
    234        import mx.core.ByteArrayAsset; 
  • as3/Astro/SpotlightFilter/trunk/src/com/borealkiss/filters/SpotlightFilter.as

    r1779 r1781  
    11/** 
    2  * SpotlightFilter class. 
     2 * com.borealkiss.filters.SpotlightFilter class. 
    33 *  
    4  * @date        29/10/2008 
     4 * @date        01/11/2008 
    55 * @version 1.0 
    66 * @author      borealkiss       
    77 * @see         http://blog.boreal-kiss.com/ 
    88 *  
    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. 
    1031 * @see http://www.rphelan.com/2008/10/28/spotlight-pixel-bender-filter/ 
    1132 */