-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
236 lines (196 loc) · 10.1 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
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>OpenVDB</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<link rel="icon" type="image/png" href="./images/favicon.png" />
<link rel="apple-touch-icon" href="./images/iosicon.png" />
<script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js">
</script>
<script src="common.js"></script>
<!-- Camera Image Slider -->
<link rel='stylesheet' id='camera-css' href='./camera/camera.css' type='text/css' media='all'>
<script type='text/javascript' src='./camera/jquery.min.js'></script>
<script type='text/javascript' src='./camera/jquery.mobile.customized.min.js'></script>
<script type='text/javascript' src='./camera/jquery.easing.1.3.js'></script>
<script type='text/javascript' src='./camera/camera.min.js'></script>
<script>
jQuery(function(){
jQuery('#slideshow').camera({
height: '350px',
thumbnails: false,
hover: false,
navigation: false,
pagination: false,
loader: 'none',
loaderPadding: 0,
loaderOpacity: 0.5,
playPause: false
});
});
</script>
</head>
<body>
<div id="main">
<div id="header">
<div id="navigation">
<span></span>
<div id="navigation-anchor"></div>
<div id="navigation-bar">
<a class="on" href="./">Home</a>
<a href="./about/">About</a>
<a href="./forum/">Forum</a>
<a href="./documentation/">Documentation</a>
<a href="./license/">License</a>
<a href="./download/">Download</a>
</div>
</div>
<div id="banner">
<div class="camera_wrap" id="slideshow">
<div data-src="./images/starwars1.jpg"> </div>
<div data-src="./images/starwars2.jpg"> </div>
<div data-src="./images/starwars3.jpg"> </div>
<div data-src="./images/starwars4.jpg"> </div>
<div data-src="./images/liquids1.jpg"> </div>
<div data-src="./images/firestorm.jpg"> </div>
<div data-src="./images/water2.jpg"> </div>
<div data-src="./images/clouds1.jpg"> </div>
<div data-src="./images/water1.jpg"> </div>
<div data-src="./images/dustcloud2.jpg"> </div>
<div data-src="./images/clouds2.jpg"> </div>
<div data-src="./images/dustcloud1.jpg"> </div>
<div data-src="./images/clouds3.jpg"> </div>
</div>
</div>
</div>
<div id="page">
<div id="content">
<h1>Welcome</h1>
<hr/>
<div class="section">
<p>OpenVDB is an Academy Award-winning open-source C++ library comprising a novel
hierarchical data structure and a suite of tools for the efficient storage and
manipulation of sparse volumetric data discretized on three-dimensional grids.
It was developed by <a href="http://www.dreamworksanimation.com/" target="_blank">
DreamWorks Animation</a> for use in volumetric applications typically encountered
in feature film production and is now maintained by the
<a href="https://www.aswf.io" target="_blank">Academy Software Foundation (ASWF)</a>.</p>
<div class="video-container">
<iframe src="https://www.youtube-nocookie.com/embed/Bq_N6Jamiac" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="video-container">
<iframe src="https://www.youtube-nocookie.com/embed/GR2_8d9Bkc0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<h2>News</h2>
<div class="news_item">
<h3>October 31, 2024</h3>
<p>OpenVDB 12.0.0 is now available to
<a href="https://github.com/AcademySoftwareFoundation/openvdb/releases/tag/v12.0.0"
target="_blank">download</a>.</p>
<p>Highlights of this major release:
<ul>
<li>Major changes to NanoVDB's directory structure, file names and namespaces to improve consistency with OpenVDB.</li>
<li>New Tree API methods to offer low-level manipulation of the tree hierarchy for improved performance.</li>
<li>Python bindings have been ported from pybind11 to nanobind.</li>
<li>Many other bug fixes, new features, and improvements.</li>
</ul>
<p>See the <a href="https://www.openvdb.org/documentation/doxygen/changes.html#v12_0_0_changes"
target="_blank">release notes</a> for a complete list of changes.</p>
</div>
<div class="news_item">
<h3>November 1, 2023</h3>
<p>OpenVDB 11.0.0 is now available to
<a href="https://github.com/AcademySoftwareFoundation/openvdb/releases/tag/v11.0.0"
target="_blank">download</a>.</p>
<p>Highlights of this major release:
<ul>
<li>Several new tools to construct and modify NanoVDB grids on the GPU.</li>
<li>New NanoVDB type that separates topology and data.</li>
<li>New file format that supports streaming of raw NanoVDB buffers.</li>
<li>OpenEXR 2 and Python 2 are no longer supported.</li>
<li>Removed most Boost dependencies.</li>
</ul>
<p>See the <a href="https://www.openvdb.org/documentation/doxygen/changes.html#v11_0_0_changes"
target="_blank">release notes</a> for a complete list of changes.</p>
</div>
<div class="news_item">
<h3>October 31, 2022</h3>
<p>OpenVDB 10.0.0 is now available to
<a href="https://github.com/AcademySoftwareFoundation/openvdb/releases/tag/v10.0.0"
target="_blank">download</a>.</p>
<p>Highlights of this major release:
<ul>
<li>Introducing <a href="https://github.com/AcademySoftwareFoundation/openvdb/tree/master/openvdb_wolfram/OpenVDBLink" target="_blank">OpenVDB Link</a>, which provides a Mathematica interface to OpenVDB.</li>
<li>Introducing a new command line tool, dubbed <a href="https://github.com/AcademySoftwareFoundation/openvdb/tree/master/openvdb_cmd/vdb_tool" target="_blank">vdb_tool</a>, that can combine any number of the high-level tools available in <a href="https://github.com/AcademySoftwareFoundation/openvdb/tree/master/openvdb/openvdb/tools" target="_blank">openvdb/tools</a>.</li>
<li>Many other bug fixes, new features, and improvements.</li>
</ul>
<p>See the <a href="https://www.openvdb.org/documentation/doxygen/changes.html#v10_0_0_changes"
target="_blank">release notes</a> for a complete list of changes.</p>
</div>
<div class="news_item">
<h3>June 9, 2022</h3>
<p>OpenVDB 9.1.0 is now available to
<a href="https://github.com/AcademySoftwareFoundation/openvdb/releases/tag/v9.1.0"
target="_blank">download</a>.</p>
<p>This is a minor release:
<ul>
<li>Added new rasterization methods from point data</li>
<li>OpenVDB AX Windows support</li>
<li>NanoVDB AMD HIP support</li>
<li>Many other bug fixes, new features and improvements</li>
</ul>
<p>See the <a href="https://www.openvdb.org/documentation/doxygen/changes.html#v9_1_0_changes"
target="_blank">release notes</a> for a complete list of changes.</p>
</div>
<div class="news_item">
<h3>October 29, 2021</h3>
<p>OpenVDB 9.0.0 is now available to
<a href="https://github.com/AcademySoftwareFoundation/openvdb/releases/tag/v9.0.0"
target="_blank">download</a>.</p>
<p>Highlights of this major release:
<ul>
<li>NanoVDB, which offers GPU support</li>
<li>Improved compilation times</li>
<li>Support for OpenEXR version 3</li>
</ul>
<p>See the <a href="https://academysoftwarefoundation.github.io/openvdb/changes.html#v9_0_0_changes"
target="_blank">release notes</a> for a complete list of changes.</p>
</div>
<div class="news_item">
<h3>June 11, 2021</h3>
<p>OpenVDB 8.1.0 is now available to
<a href="https://github.com/AcademySoftwareFoundation/openvdb/releases/tag/v8.1.0"
target="_blank">download</a>.</p>
<p>This is a minor release:
<ul>
<li>Too many improvements and bug fixes to list here</li>
<li>Dropping support for major version 5</li>
</ul>
<p>See the <a href="https://academysoftwarefoundation.github.io/openvdb/changes.html#v8_1_0_changes"
target="_blank">release notes</a> for a complete list of changes.</p>
</div>
<div class="news_item">
<h3>February 5, 2021</h3>
<p>OpenVDB 8.0.1 is now available to
<a href="https://github.com/AcademySoftwareFoundation/openvdb/releases/tag/v8.0.1"
target="_blank">download</a>.</p>
<p>This is a patch release:
<ul>
<li>fix to CSG intersection mode in new merge algorithm</li>
<li>various bug fixes and other improvements</li>
</ul>
<p>See the <a href="https://academysoftwarefoundation.github.io/openvdb/changes.html#v8_0_1_changes"
target="_blank">release notes</a> for a complete list of changes.</p>
</div>
</div> <!-- end section -->
</div> <!-- end content -->
<div class="sidebar">
<div id="info-pane"></div>
</div> <!-- sidebar -->
</div> <!-- end page -->
<div id="footer"><p></p></div>
</div>
</body>
</html>