root/as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/detector/FLARDetectMarkerResult.as

リビジョン 3787, 1.4 kB (コミッタ: rokubou, コミット時期: 2 年 前)

added and modified getSquare and getDirection

Line 
1 /*
2  * PROJECT: FLARToolKit
3  * --------------------------------------------------------------------------------
4  * This work is based on the NyARToolKit developed by
5  *   R.Iizuka (nyatla)
6  * http://nyatla.jp/nyatoolkit/
7  *
8  * The FLARToolKit is ActionScript 3.0 version ARToolkit class library.
9  * Copyright (C)2008 Saqoosha
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  *
24  * For further information please contact.
25  *      http://www.libspark.org/wiki/saqoosha/FLARToolKit
26  *      <saq(at)saqoosha.net>
27  *
28  */
29 package org.libspark.flartoolkit.detector
30 {
31         import jp.nyatla.nyartoolkit.as3.core.squaredetect.NyARSquare;
32         internal class FLARDetectMarkerResult
33         {
34                 public var arcode_id:int;
35                 public var confidence:Number;
36                 public var direction:int;
37
38                 public var square:NyARSquare=new NyARSquare();
39         }
40 }
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。