-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (92 loc) · 2.71 KB
/
index.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
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<html>
<title>Web builds of OpenSceneGraph cross-platform examples</title>
<body>
<h1>Web builds of OpenSceneGraph cross-platform examples</h1>
<p>Source code repository is <a href="https://github.com/OGStudio/openscenegraph-cross-platform-examples">here</a></p>
<p><strong>Note</strong>: click on image to run concrete example</p>
<table>
<tr>
<th>Screenshot</th>
<th>Title</th>
<th>Date</th>
<th>Topic</th>
<th>Description</th>
</tr>
<!-- 01 -->
<tr>
<td>
<a href="examples/01/ex01-embed-resource.html">
<img class="resize" src="examples/01/shot.png">
</a>
</td>
<td>OSGCPE-01</td>
<td>2018-04-09</td>
<td>Embed resource into executable</td>
<td>Learn how to embed a binary resource into application with `xxd` Unix utility and use the resource across platforms.</td>
</tr>
<!-- 02 -->
<tr>
<td>
<a href="examples/02/ex02-texture-image.html">
<img class="resize" src="examples/02/shot.png">
</a>
</td>
<td>OSGCPE-02</td>
<td>2018-04-13</td>
<td>Use PNG images with PNG plugins</td>
<td>Learn how to use PNG images across platforms with PNG plugins.</td>
</tr>
<!-- 03 -->
<tr>
<td>
<a href="examples/03/ex03-http-client.html">
<img class="resize" src="examples/03/shot.png">
</a>
</td>
<td>OSGCPE-03</td>
<td>2018-07-27</td>
<td>Implement cross-platform HTTP client</td>
<td>Learn how to implement HTTP client across platforms to perform GET/POST requests</td>
</tr>
<!-- Ex04 -->
<tr>
<td>
<a href="examples/04/ex04-remote-debugging.html">
<img class="resize" src="examples/04/shot.png">
</a>
</td>
<td>OSGCPE-04</td>
<td>2018-06-27</td>
<td>Implement remote debugging</td>
<td>Learn how to implement remote debugging across platforms</td>
</tr>
<!-- 05 -->
<tr>
<td>
<a href="examples/05/ex05-node-selection.html">
<img class="resize" src="examples/05/shot.png">
</a>
</td>
<td>OSGCPE-05</td>
<td>2018-08-14</td>
<td>Node selection</td>
<td>Learn how to select a node</td>
</tr>
<!-- OSGCPE-06 -->
<tr>
<td>
<a href="examples/06/ex06-command-sequence.html">
<img class="resize" src="examples/06/shot.png">
</a>
</td>
<td>OSGCPE-06</td>
<td>2018-09-25</td>
<td>Command sequence</td>
<td>Learn how to compose a sequence of asynchronous commands to combine animations with other operations</td>
</tr>
</table>
</body>
</html>