OSDN Git Service

ライセンス文の更新
[nyartoolkit-and/nyartoolkit-and.git] / src / jp / nyatla / nyartoolkit / core / raster / rgb / NyARRgbRaster_Blank.java
index 466407e..ca12e3f 100644 (file)
@@ -7,30 +7,30 @@
  *   HITLab, University of Washington, Seattle\r
  * http://www.hitl.washington.edu/artoolkit/\r
  *\r
- * The NyARToolkit is Java version ARToolkit class library.\r
- * Copyright (C)2008 R.Iizuka\r
+ * The NyARToolkit is Java edition ARToolKit class library.\r
+ * Copyright (C)2008-2009 Ryo Iizuka\r
  *\r
  * This program is free software; you can redistribute it and/or\r
- * modify it under the terms of the GNU General Public License\r
- * as published by the Free Software Foundation; either version 2\r
+ * modify it under the terms of the GNU Lesser General Public License\r
+ * as published by the Free Software Foundation; either version 3\r
  * of the License, or (at your option) any later version.\r
  * \r
  * This program is distributed in the hope that it will be useful,\r
  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
+ * GNU Lesser General Public License for more details\r
  * \r
- * You should have received a copy of the GNU General Public License\r
- * along with this framework; if not, write to the Free Software\r
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
+ * You should have received a copy of the GNU Lesser General Public\r
+ * License along with this program. If not, see <http://www.gnu.org/licenses/>.\r
  * \r
  * For further information please contact.\r
  *     http://nyatla.jp/nyatoolkit/\r
- *     <airmail(at)ebony.plala.or.jp>\r
+ *     <airmail(at)ebony.plala.or.jp> or <nyatla(at)nyatla.jp>\r
  * \r
  */\r
 package jp.nyatla.nyartoolkit.core.raster.rgb;\r
 \r
+import jp.nyatla.nyartoolkit.NyARException;\r
 import jp.nyatla.nyartoolkit.core.rasterreader.INyARBufferReader;\r
 import jp.nyatla.nyartoolkit.core.rasterreader.INyARRgbPixelReader;\r
 import jp.nyatla.nyartoolkit.core.rasterreader.NyARBufferReader;\r
@@ -52,7 +52,7 @@ public class NyARRgbRaster_Blank extends NyARRgbRaster_BasicClass
                        return;\r
                }\r
 \r
-               public void getPixelSet(int[] i_x, int i_y[], int i_num, int[] o_rgb)\r
+               public void getPixelSet(int[] i_x, int[] i_y, int i_num, int[] o_rgb)\r
                {\r
                        for (int i = i_num - 1; i >= 0; i--) {\r
                                o_rgb[i * 3 + 0] = 0;// R\r
@@ -60,6 +60,15 @@ public class NyARRgbRaster_Blank extends NyARRgbRaster_BasicClass
                                o_rgb[i * 3 + 2] = 0;// B\r
                        }\r
                }\r
+               public void setPixel(int i_x, int i_y, int[] i_rgb) throws NyARException\r
+               {\r
+                       NyARException.notImplement();           \r
+               }\r
+               public void setPixels(int[] i_x, int[] i_y, int i_num, int[] i_intrgb) throws NyARException\r
+               {\r
+                       NyARException.notImplement();           \r
+               }\r
+               \r
        }\r
 \r
        private INyARRgbPixelReader _reader;\r