-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtour.html
155 lines (102 loc) · 4.59 KB
/
tour.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=1024" />
<meta name="format-detection" content="telephone=no" />
<title>casmi : Tour</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 : Tour" />
<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" class="selected">Tour</a>
</li>
<li>
<a href="/docs.html">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="#what-is-casmi">What is casmi?</a></p>
</div>
<ul>
<li><a href="#realtime">Realtime</a></li>
<li><a href="#great-many-primitives">Great Many Primitives</a></li>
<li><a href="#animation-and-sequence">Animation and Sequence</a></li>
</ul>
</div>
</div>
<div id="center">
<h1 id="tour">Tour</h1>
<p><strong>We are sorry. Not written yet :(</strong></p>
<p>To learn more about casmi, please see sample codes from <a href="https://github.com/casmi/casmi-examples">https://github.com/casmi/casmi-examples</a>. Enjoy!</p>
<h2 id="what-is-casmi">What is casmi?</h2>
<p>casmi is a visualization library for Java.
casmi supports 2D/3D realtime rendering base on OpenGL.
With assembling graphics primitives (line, circle, sphere, etc.), you can easily design scene layouts.
Smooth tween animations and scene sequencing functions add rich user interface on your application.</p>
<h3 id="realtime">Realtime</h3>
<p>Realtime rendering based on OpenGL</p>
<h3 id="great-many-primitives">Great Many Primitives</h3>
<p>Great many primitives (line, rectangle, circle, ellipse cube, sphere, torus, cone etc.)</p>
<h3 id="animation-and-sequence">Animation and Sequence</h3>
<ul>
<li>Tween animation</li>
<li>Sequence of timeline</li>
</ul>
</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>