-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs.html
286 lines (219 loc) · 10.2 KB
/
docs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=1024" />
<meta name="format-detection" content="telephone=no" />
<title>casmi : Docs</title>
<meta name="keywords" content="casmi, visualization, 2D visualization, 3D visualization, Java, Clojure" />
<meta name="description" content="casmi is a visualization library for Java. casmi supports 2D/3D realtime rendering based on OpenGL. With assembling graphics primitives, you can easily design scene layouts. Smooth tween animations and scene sequencing functions add rich UI/UX on your application." />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" href="/assets/css/normalize.css" type="text/css" />
<link rel="stylesheet" href="/assets/css/default.css" type="text/css" />
<link rel="icon" type="image/x-icon" href="favicon.ico">
<meta property="og:title" content="casmi : Docs" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://casmi.github.io/" />
<meta property="og:locale" content="en_US" />
<meta property="og:image" content="http://casmi.github.io/img/icon_og_casmi.jpg" />
<meta property="og:site_name" content="casmi" />
<meta property="og:description" content="casmi is a visualization library for Java. casmi supports 2D/3D realtime rendering based on OpenGL. With assembling graphics primitives, you can easily design scene layouts. Smooth tween animations and scene sequencing functions add rich UI/UX on your application." />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-29139014-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="wrapper">
<div id="header">
<a href="/">
<img src="/assets/img/logo.png" alt="casmi" />
</a>
<ul>
<li>
<a href="/">Overview</a>
</li>
<li>
<a href="/tour.html">Tour</a>
</li>
<li>
<a href="/docs.html" class="selected">Docs</a>
</li>
<li>
<a href="/download.html">Download</a>
</li>
<li>
<a href="/gallery/">Gallery</a>
</li>
</ul>
</div>
<div id="main">
<div id="side">
<div class="navigation-entry">
<div>
<p><a href="#document">Document</a></p>
</div>
<ul>
<li><a href="#tutorial">Tutorial</a></li>
<li><a href="#api-document">API Document</a></li>
</ul>
</div>
<div class="navigation-entry">
<div>
<p><a href="#faq">FAQ</a></p>
</div>
</div>
</div>
<div id="center">
<h1 id="docs">Docs</h1>
<h2 id="tutorial">Tutorial</h2>
<p><strong>We are sorry. Not written yet :(</strong></p>
<h2 id="api-document">API Document</h2>
<ul>
<li><a href="/apidocs/casmi-0.4.0/">0.4.0 (Latest)</a></li>
<li><a href="/apidocs/casmi-0.3.2/">0.3.2</a></li>
<li><a href="/apidocs/casmi-0.3.1/">0.3.1</a></li>
<li><a href="/apidocs/casmi-0.3.0/">0.3.0</a></li>
</ul>
<h2 id="faq">FAQ</h2>
<h4 id="which-platform-doest-casmi-support">Which platform doest casmi support?</h4>
<p>casmi supports GNU/Linux, Mac OS X and Microsoft Windows.</p>
<h4 id="how-can-i-make-a-executable-binary-for-mac-os-x-and-microsoft-windows">How can I make a executable binary for Mac OS X and Microsoft Windows?</h4>
<p>If you want to export a Mac OS X <code>.app</code> file, add following to <code>pom.xml</code></p>
<pre><code><plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>osxappbundle-maven-plugin</artifactId>
<version>1.0-alpha-1</version>
<configuration>
<mainClass>your.application.MainClass</mainClass>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
</plugin>
</code></pre>
<p>If you want to export a Microsoft Windows <code>.exe</code> file, add following to <code>pom.xml</code></p>
<pre><code><plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>>
<version>1.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>pack</shadedClassifierName>
</configuration>
</plugin>
<plugin>
<groupId>org.bluestemsoftware.open.maven.plugin</groupId>
<artifactId>launch4j-plugin</artifactId>
<version>1.5.0.0</version>
<executions>
<!-- GUI exe -->
<execution>
<id>l4j-gui</id>
<phase>package</phase>
<goals>
<goal>launch4j</goal>
</goals>
<configuration>
<headerType>gui</headerType>
<outfile>target/${artifactId}_gui.exe</outfile>
<jar>target/${artifactId}-${version}-pack.jar</jar>
<errTitle>your application error</errTitle>
<classPath>
<mainClass>your.application.MainClass</mainClass>
</classPath>
<!-- <icon>src/main/resources/icons/exeIcon.ico</icon> -->
<jre>
<minVersion>1.5.0</minVersion>
<maxVersion>1.6.0</maxVersion>
<initialHeapSize>128</initialHeapSize>
<maxHeapSize>1024</maxHeapSize>
</jre>
<versionInfo>
<fileVersion>1.0.0.0</fileVersion>
<txtFileVersion>1.0.0.0</txtFileVersion>
<fileDescription>Description</fileDescription>
<copyright>your copyright</copyright>
<productVersion>1.0.0.0</productVersion>
<txtProductVersion>1.0.0.0</txtProductVersion>
<productName>Product</productName>
<internalName>Product</internalName>
<originalFilename>your_application.exe</originalFilename>
</versionInfo>
</configuration>
</execution>
<!-- CUI exe -->
<execution>
<id>l4j-cli</id>
<phase>package</phase>
<goals>
<goal>launch4j</goal>
</goals>
<configuration>
<headerType>console</headerType>
<outfile>target/${artifactId}_cli.exe</outfile>
<jar>target/${artifactId}-${version}-pack.jar</jar>
<errTitle>your application error</errTitle>
<classPath>
<mainClass>your.application.MainClass</mainClass>
</classPath>
<!-- <icon>src/main/resources/icons/exeIcon.ico</icon> -->
<jre>
<minVersion>1.5.0</minVersion>
<maxVersion>1.6.0</maxVersion>
<initialHeapSize>128</initialHeapSize>
<maxHeapSize>1024</maxHeapSize>
</jre>
</configuration>
</execution>
</executions>
</plugin>
</code></pre>
<h4 id="what-kind-of-license-does-casmi-have">What kind of license does casmi have?</h4>
<p>casmi has LGPL version 3 license.</p>
<h4 id="what-i-do-when-i-want-to-involve-in-the-casmi-project">What I do when I want to involve in the casmi project?</h4>
<p>Pull requests are the best ways to involve in. Pull requests can be created in github.
See <a href="https://github.com/casmi/casmi/pulls">https://github.com/casmi/casmi/pulls</a> for more information.</p>
<h4 id="where-can-i-get-help">Where can I get help?</h4>
<p>Submit a question or bug report on github issue: <a href="https://github.com/casmi/casmi/issues">https://github.com/casmi/casmi/issues</a>.
We can help you.</p>
<h4 id="what-is-xcoo-inc">What is Xcoo, Inc. ?</h4>
<p>Xcoo, Inc. is a startup company for research and development of visualization and interactive systems, located in Tokyo, Japan.
We began our business on April 1st, 2011.
The backgrounds of members of Xcoo, Inc include virtual reality, human interface, computer science and design.
Please visit our website <a href="http://www.xcoo.jp">http://www.xcoo.jp/</a>.</p>
</div>
<div class="clear"></div>
</div>
<div id="footer">
<div class="copyright">
<span>Copyright © Xcoo, Inc. All rights reserved.</span>
</div>
</div>
</div>
<a href="https://github.com/casmi/casmi" target="_blank"><img style="position: fixed; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_white_ffffff.png" alt="Fork me on GitHub"></a>
<script type="text/javascript">
var imgPath = "/assets/img";
</script>
<script type="text/javascript" src="/assets/js/preload.js"></script>
</body>
</html>