680aad898d7a76e00bbf51b837452b90dac4b213
[sixth-3d-demos.git] / doc / index.html
1 <?xml version="1.0" encoding="utf-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5 <head>
6 <!-- 2016-08-23 Tue 09:35 -->
7 <meta  http-equiv="Content-Type" content="text/html;charset=utf-8" />
8 <meta  name="viewport" content="width=device-width, initial-scale=1" />
9 <title>Sixth 3D engine demos</title>
10 <meta  name="generator" content="Org-mode" />
11 <meta  name="author" content="Svjatoslav Agejenko" />
12 <style type="text/css">
13  <!--/*--><![CDATA[/*><!--*/
14   .title  { text-align: center;
15              margin-bottom: .2em; }
16   .subtitle { text-align: center;
17               font-size: medium;
18               font-weight: bold;
19               margin-top:0; }
20   .todo   { font-family: monospace; color: red; }
21   .done   { font-family: monospace; color: green; }
22   .priority { font-family: monospace; color: orange; }
23   .tag    { background-color: #eee; font-family: monospace;
24             padding: 2px; font-size: 80%; font-weight: normal; }
25   .timestamp { color: #bebebe; }
26   .timestamp-kwd { color: #5f9ea0; }
27   .org-right  { margin-left: auto; margin-right: 0px;  text-align: right; }
28   .org-left   { margin-left: 0px;  margin-right: auto; text-align: left; }
29   .org-center { margin-left: auto; margin-right: auto; text-align: center; }
30   .underline { text-decoration: underline; }
31   #postamble p, #preamble p { font-size: 90%; margin: .2em; }
32   p.verse { margin-left: 3%; }
33   pre {
34     border: 1px solid #ccc;
35     box-shadow: 3px 3px 3px #eee;
36     padding: 8pt;
37     font-family: monospace;
38     overflow: auto;
39     margin: 1.2em;
40   }
41   pre.src {
42     position: relative;
43     overflow: visible;
44     padding-top: 1.2em;
45   }
46   pre.src:before {
47     display: none;
48     position: absolute;
49     background-color: white;
50     top: -10px;
51     right: 10px;
52     padding: 3px;
53     border: 1px solid black;
54   }
55   pre.src:hover:before { display: inline;}
56   pre.src-sh:before    { content: 'sh'; }
57   pre.src-bash:before  { content: 'sh'; }
58   pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
59   pre.src-R:before     { content: 'R'; }
60   pre.src-perl:before  { content: 'Perl'; }
61   pre.src-java:before  { content: 'Java'; }
62   pre.src-sql:before   { content: 'SQL'; }
63
64   table { border-collapse:collapse; }
65   caption.t-above { caption-side: top; }
66   caption.t-bottom { caption-side: bottom; }
67   td, th { vertical-align:top;  }
68   th.org-right  { text-align: center;  }
69   th.org-left   { text-align: center;   }
70   th.org-center { text-align: center; }
71   td.org-right  { text-align: right;  }
72   td.org-left   { text-align: left;   }
73   td.org-center { text-align: center; }
74   dt { font-weight: bold; }
75   .footpara { display: inline; }
76   .footdef  { margin-bottom: 1em; }
77   .figure { padding: 1em; }
78   .figure p { text-align: center; }
79   .inlinetask {
80     padding: 10px;
81     border: 2px solid gray;
82     margin: 10px;
83     background: #ffffcc;
84   }
85   #org-div-home-and-up
86    { text-align: right; font-size: 70%; white-space: nowrap; }
87   textarea { overflow-x: auto; }
88   .linenr { font-size: smaller }
89   .code-highlighted { background-color: #ffff00; }
90   .org-info-js_info-navigation { border-style: none; }
91   #org-info-js_console-label
92     { font-size: 10px; font-weight: bold; white-space: nowrap; }
93   .org-info-js_search-highlight
94     { background-color: #ffff00; color: #000000; font-weight: bold; }
95   /*]]>*/-->
96 </style>
97 <link rel="stylesheet" type="text/css" href="http://thomasf.github.io/solarized-css/solarized-dark.min.css" />
98 <script type="text/javascript">
99 /*
100 @licstart  The following is the entire license notice for the
101 JavaScript code in this tag.
102
103 Copyright (C) 2012-2013 Free Software Foundation, Inc.
104
105 The JavaScript code in this tag is free software: you can
106 redistribute it and/or modify it under the terms of the GNU
107 General Public License (GNU GPL) as published by the Free Software
108 Foundation, either version 3 of the License, or (at your option)
109 any later version.  The code is distributed WITHOUT ANY WARRANTY;
110 without even the implied warranty of MERCHANTABILITY or FITNESS
111 FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.
112
113 As additional permission under GNU GPL version 3 section 7, you
114 may distribute non-source (e.g., minimized or compacted) forms of
115 that code without the copy of the GNU GPL normally required by
116 section 4, provided you include this license notice and a URL
117 through which recipients can access the Corresponding Source.
118
119
120 @licend  The above is the entire license notice
121 for the JavaScript code in this tag.
122 */
123 <!--/*--><![CDATA[/*><!--*/
124  function CodeHighlightOn(elem, id)
125  {
126    var target = document.getElementById(id);
127    if(null != target) {
128      elem.cacheClassElem = elem.className;
129      elem.cacheClassTarget = target.className;
130      target.className = "code-highlighted";
131      elem.className   = "code-highlighted";
132    }
133  }
134  function CodeHighlightOff(elem, id)
135  {
136    var target = document.getElementById(id);
137    if(elem.cacheClassElem)
138      elem.className = elem.cacheClassElem;
139    if(elem.cacheClassTarget)
140      target.className = elem.cacheClassTarget;
141  }
142 /*]]>*///-->
143 </script>
144 </head>
145 <body>
146 <div id="content">
147 <h1 class="title">Sixth 3D engine demos</h1>
148 <div id="table-of-contents">
149 <h2>Table of Contents</h2>
150 <div id="text-table-of-contents">
151 <ul>
152 <li><a href="#orgheadline1">1. Description</a></li>
153 </ul>
154 </div>
155 </div>
156 <hr  />
157 <ul class="org-ul">
158 <li>This is a subproject of <a href="http://www2.svjatoslav.eu/gitbrowse/sixth-3d/doc/index.html">Sixth 3D</a></li>
159 <li><a href="http://www2.svjatoslav.eu/gitweb/?p=sixth-3d-demos.git;a=snapshot;h=HEAD;sf=tgz">download latest snapshot</a></li>
160
161 <li>This program is free software; you can redistribute it and/or modify it under
162 the terms of version 3 of the <a href="https://www.gnu.org/licenses/lgpl.html">GNU Lesser General Public License</a> or later as
163 published by the Free Software Foundation.</li>
164
165 <li>Program author:
166 <ul class="org-ul">
167 <li>Svjatoslav Agejenko</li>
168 <li>Homepage: <a href="http://svjatoslav.eu/">http://svjatoslav.eu/</a></li>
169 <li>Email: <a href="mailto://svjatoslav@svjatoslav.eu/">mailto://svjatoslav@svjatoslav.eu/</a></li>
170 </ul></li>
171
172 <li><a href="http://svjatoslav.eu/programs.jsp">other applications hosted at svjatoslav.eu</a></li>
173 </ul>
174
175
176 <div id="outline-container-orgheadline1" class="outline-2">
177 <h2 id="orgheadline1"><span class="section-number-2">1</span> Description</h2>
178 <div class="outline-text-2" id="text-1">
179 <p>
180 Goal of this project is to show off capabilities of <a href="http://www2.svjatoslav.eu/gitbrowse/sixth-3d/doc/index.html">Sixth 3D</a> engine. Also to
181 show examples of its usage.
182 </p>
183
184
185 <div class="figure">
186 <p><a href="screenshots/index.html"><img src="screenshots.png" alt="screenshots.png" /></a>
187 </p>
188 </div>
189
190 <p>
191 Sample scenes rendered at interactive framerates by Sixth 3D engine.
192 </p>
193 </div>
194 </div>
195 </div>
196 <div id="postamble" class="status">
197 <p class="author">Author: Svjatoslav Agejenko</p>
198 <p class="date">Created: 2016-08-23 Tue 09:35</p>
199 <p class="validation"><a href="http://validator.w3.org/check?uri=referer">Validate</a></p>
200 </div>
201 </body>
202 </html>