チェンジセット 3684
- コミット日時:
- 2010/04/03 20:41:50 (2 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/FLARToolKit/trunk/src/examples/FLARTK_Example_SingleManager_PV3D.as
r3667 r3684 202 202 203 203 // setup ARToolkit 204 this.raster = new FLARRgbRaster_BitmapData( captureWidth, captureHeight); 205 this.capture = new Bitmap( BitmapData(this.raster.getBuffer()), PixelSnapping.AUTO, true); 204 this.capture = new Bitmap(new BitmapData(this.captureWidth, this.captureHeight, false, 0), PixelSnapping.AUTO, true); 206 205 capture.width = this.canvasWidth; 207 206 capture.height = this.canvasHeight; 208 207 this.addChild(this.capture); 208 209 this.raster = new FLARRgbRaster_BitmapData(this.capture.bitmapData); 209 210 210 211 _viewport = this.addChild(new Viewport3D(this.captureWidth, this.captureHeight)) as Viewport3D; as3/FLARToolKit/trunk/src/examples/FLARTK_Example_SingleNyIDManager.as
r3667 r3684 201 201 202 202 // setup ARToolkit 203 this.raster = new FLARRgbRaster_BitmapData( captureWidth, captureHeight); 204 this.capture = new Bitmap( BitmapData(this.raster.getBuffer()), PixelSnapping.AUTO, true); 203 this.capture = new Bitmap(new BitmapData(this.captureWidth, this.captureHeight, false, 0), PixelSnapping.AUTO, true); 205 204 capture.width = this.canvasWidth; 206 205 capture.height = this.canvasHeight; 207 206 this.addChild(this.capture); 207 208 this.raster = new FLARRgbRaster_BitmapData(this.capture.bitmapData); 208 209 209 210 _viewport = this.addChild(new Viewport3D(this.captureWidth, this.captureHeight)) as Viewport3D; as3/FLARToolKit/trunk/src/examples/manager/FLSingleARMarkerManager.as
r3667 r3684 276 276 * detectMarkerのコールバック関数 277 277 */ 278 class DetectSquareCB implements NyARSquareContourDetector_IDetectMarkerCallback278 internal class DetectSquareCB implements NyARSquareContourDetector_IDetectMarkerCallback 279 279 { 280 280 //公開プロパティ

