- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/imgntn/j360
- 软件文档: https://github.com/imgntn/j360
软件介绍
j360 是 Three.js 的一个扩展,实现了 360 度的视频和图像捕获。j360 依赖于 CCapture.js 。
示例代码:
// Create a capturer that exports Equirectangular 360 JPG images in a TAR file
var capturer360 = new CCapture({
format: 'threesixty',
display: true,
autoSaveTime: 3,
});
capturer360.capture(canvas);
function startCapture360(event) {
capturer360.start();
}
function stopCapture360(event) {
capturer360.stop();
}Real-Time Rendering, Third Edition
Tomas Akenine-Moller、Eric Haines、Naty Hoffman / A K Peters/CRC Press / 2008-7-25 / USD 102.95
Thoroughly revised, this third edition focuses on modern techniques used to generate synthetic three-dimensional images in a fraction of a second. With the advent or programmable shaders, a wide varie......一起来看看 《Real-Time Rendering, Third Edition》 这本书的介绍吧!
