root/as3/FLARToolKit/branches/ver1_x_x/README.txt

リビジョン 3353, 6.6 kB (コミッタ: saqoosha, コミット時期: 3 年 前)

Changed character code to UTF and return code to LF.

Line 
1 ======================================================================
2 FLARToolKit
3  version 1.0.0
4 ======================================================================
5
6 The FLARToolKit is ActionScript 3.0 version ARToolkit class library.
7 Copyright (C)2008 Saqoosha
8
9 This program is free software; you can redistribute it and/or
10 modify it under the terms of the GNU General Public License
11 as published by the Free Software Foundation; either version 2
12 of the License, or (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this framework; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22
23 For further information please contact.
24  http://www.libspark.org/wiki/saqoosha/FLARToolKit
25  <saq(at)saqoosha.net>
26
27 This work is based on the NyARToolKit developed by
28   R.Iizuka (nyatla)
29   http://nyatla.jp/nyatoolkit/
30
31 ----------------------------------------------------------------------
32  About FLARToolKit
33 ----------------------------------------------------------------------
34  * ARToolKit の AS3 版です。
35  * A虎@(nyatla)氏が Java に移植した NyARToolkit を
36    さらに ActionScript3 に移植したライブラリです。
37  * FLARToolKit は入力画像からマーカーを認識して、3 次元空間での
38    カメラ位置を計算するとこまでをやってくれます。
39  * 3D グラフィックスとの合成などは各自で実装する必要があります。
40  * ただし簡単に合成できるようにヘルパー的なものはついてます。
41    (Papervision3D, Away3D)
42
43  # AS3 ported version of ARToolKit.
44  # Actually, FLARToolKit is based on NyARToolkit,
45    Java ported version of ARToolKit.
46  # FLARToolKit recognize the marker from input image.
47    and calculate its orientation and position in 3D world.
48  # You should draw 3D graphics by your own.
49  # But helper classes for major flash 3D engines
50    (Papervision3D, Away3D)
51
52 ----------------------------------------------------------------------
53  FLARToolKit License
54 ----------------------------------------------------------------------
55 FLARToolKitは「GPL」と「Commercialライセンス」の
56 デュアルライセンス方式を採用しています。
57 また、FLARToolKitは関連するいくつかのライブラリも含めて配布しています。
58 含まれるライブラリは、それぞれのライセンスが適応されます。
59
60 [GPL License]
61 ライセンスの内容は、COPYING.txtをご確認ください
62 また、GPL(the GNU General Public License v3)を選択した場合、
63 商用・非商用を問わず、無料で使用可能です。
64 ただし、GPLで課されている条件に従い、GPLを適応していることの告知、
65 並びにユーザーの要求に応じてアプリケーションのソースコードの提供、
66 これらを含む義務を履行してください。
67
68 [Commercial License]
69 FLARToolKitはGPLを受け入れることができないユーザーのために、
70 Commercial Licenseが有償でARToolworks Inc.より提供されています。
71 ARToolworks Inc.より許諾を受けることにより、GPLの制約から
72 解放されます。
73 条件やライセンス費用については、ARToolworks Inc.に問合せてください。
74
75 ARToolworks Inc. http://www.artoolworks.com/
76 mailto : sales@artoolworks.com
77
78
79 FLARToolKit is available for download and use under two licenses:
80
81 GPL License: FLARToolKit can be used for free under GPL v3
82 (the GNU General Public License, v3). Source code of applications using
83 FLARToolKit under the GPL must be provided free of charge on request.
84
85 Commercial License: Source code of FLARToolKit applications can be
86 protected with a commercial license, offered exclusively by ARToolworks.
87 Applications using the commercial license do not have to provide
88 source code, but must pay a licensing fee.
89 Contact ARToolworks at sales@artoolworks.com for more information.
90
91 ARToolworks Inc.
92 http://www.artoolworks.com/
93
94 Moreover, FLARToolKit is distributed including some relating libraries.
95 Each license adjusts to the included library.
96
97 ----------------------------------------------------------------------
98  Attention
99 ----------------------------------------------------------------------
100 このバージョンは、過去に配布されたStart-kitなどから復元されたものです。
101 This version is the one restored from Start-kit etc. distributed in the past.
102
103 ----------------------------------------------------------------------
104  Include External library
105 ----------------------------------------------------------------------
106 [papervision3d Public Beta 2.0]
107  Open Source realtime 3D engine for Flash
108  URL     : http://code.google.com/p/papervision3d/
109  License : MIT License
110
111 ----------------------------------------------------------------------
112  External library
113 ----------------------------------------------------------------------
114 [Away3D, Away3D Lite]
115  Realtime 3D engine for Flash
116  URL     : http://away3d.com/
117  License : Apache License, Version 2.0
118  
119 [Sandy3D]
120  Realtime 3D engine for Flash
121  URL     : http://away3d.com/
122  License : MOZILLA PUBLIC LICENSE, Version 1.1
123
124 [Alternativa3D]
125  browser 3D-engine based on Adobe Flash
126  URL     : http://www.flashsandy.org/
127  License : Commercial licence / Free non-commercial licence
128
129 ----------------------------------------------------------------------
130  Change Log
131 ----------------------------------------------------------------------
132 1.0.0 (2010-01-20)
133  * implemented support for debugging display of thresholded and
134    labeled BitmapData objects, via accessors in FLARMultiMarkerDetector
135    and FLARSquareDetector.(ericsoco)
136  * implemented option to skip internal thresholding process,
137    to allow use of custom thresholding algorithms(ericsoco)
138  * added variable marker border width to FLARMultiMarkerDetector,
139    to match FLARSingleMarkerDetector.(ericsoco)
140  * FLARParam : default camera values(makc)
141  * Move 3d framework support classes into
142    org.libspark.flartoolkit.support package.(saqoosha)
143  * adding makc's sandy3D support.(ericsoco,makc)
144  * adding makc's alternativa3D support.(ericsoco,makc)
145  * corrected import statements in repackaged support (3d framework)
146    classes.(ericsoco)
147  * added away3d 3.3.3 support to support.away3d package.(ericsoco)
148  * added away3dlite support(ericsoco)
149
150 0.9.1 (2010-01-17)
151 Re-packaging by rokubou.
152
153 0.9.0 (2009-06-03)
154 packaging by saqoosha
155  * Added stater sample(starter-kit)
156
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。