返回介绍

手册

参考

示例

开发者参考

DataTexture

发布于 2021-07-10 14:14:19 字数 2613 浏览 1236 评论 0 收藏 0

从原始数据(raw data)、宽(width)、高(height)来直接创建一个纹理贴图。

构造函数

DataTexture( data, width, height, format, type, mapping, wrapS, wrapT, magFilter, minFilter, anisotropy )

data 参数必须是一个 ArrayBufferView 。 其他参数对应于继承自 Texture 的属性,其中 magFilter 与 minFilter 默认为 THREE.NearestFilter。属性 flipY 和 generateMipmaps 初始设为 false。

数据的解释取决于type与format: If the type is THREE.UnsignedByteType, a Uint8Array will be useful for addressing the texel data. If the format is THREE.RGBAFormat, data needs four values for one texel; Red, Green, Blue and Alpha (typically the opacity). Similarly, THREE.RGBFormat specifies a format where only three values are used for each texel.
For the packed types, THREE.UnsignedShort4444Type, THREE.UnsignedShort5551Type or THREE.UnsignedShort565Type, all color components of one texel can be addressed as bitfields within an integer element of a Uint16Array.
In order to use the types THREE.FloatType and THREE.HalfFloatType, the WebGL implementation must support the respective extensions OES_texture_float and OES_texture_half_float. In order to use THREE.LinearFilter for component-wise, bilinear interpolation of the texels based on these types, the WebGL extensions OES_texture_float_linear or OES_texture_half_float_linear must also be present.

代码示例

// create a buffer with color data
const width = 512;
const height = 512;
const size = width * height;
const data = new Uint8Array( 3 * size );
const color = new THREE.Color( 0xffffff );
const r = Math.floor( color.r * 255 );
const g = Math.floor( color.g * 255 );
const b = Math.floor( color.b * 255 );
for ( let i = 0; i < size; i ++ ) {
  const stride = i * 3;
  data[ stride ] = r;
  data[ stride + 1 ] = g;
  data[ stride + 2 ] = b;
}
// used the buffer to create a DataTexture
const texture = new THREE.DataTexture( data, width, height, THREE.RGBFormat );

属性

See the base Texture class for common properties.

.image : Image

Overridden with a record type holding data, width and height.

方法

See the base Texture class for common methods.

源码

src/textures/DataTexture.js

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文