返回介绍

手册

参考

示例

开发者参考

查找表(Lut)

发布于 2021-07-10 14:14:20 字数 2943 浏览 1347 评论 0 收藏 0

表示颜色表的查找表,用于从一个数据值的范围中确定颜色值。

代码示例

const lut = new Lut( 'rainbow', 512 );
const color = lut.getColor( 0.5 );

构造函数

Lut( colormap, numberOfColors )

colormap - (可选)从预定义的颜色表中设置一个颜色表。可选值有:"rainbow"、 "cooltowarm"、 "blackbody"。 numberOfColors - (可选)设置用于表示数据数组的颜色数量。

属性

.minV : Float

查找表所表示的最小值,默认为0。

.maxV : Float

查找表所表示的最小值,默认为1。

.[legend]

查找表的图例。

方法

.copy ( lut : Lut ) : null this : Lut

color — 要拷贝的 Lut。

拷贝给定的 Lut。

.setLegendOn [parameters]

parameters - { layout: value, position: { x: value, y: value, z: value }, dimensions: { width: value, height: value } } layout — Horizontal or vertical layout. Default is vertical.
position — The position x,y,z of the legend.
dimensions — The dimensions (width and height) of the legend.

Sets this Lut with the legend on.

.setLegendOff

Sets this Lut with the legend off.

.setLegendLabels [parameters, callback]

parameters - { fontsize: value, fontface: value, title: value, um: value, ticks: value, decimal: value, notation: value } fontsize — Font size to be used for labels.
fontface — Font type to be used for labels.
title — The title of the legend.
um — The unit of measurements of the legend.
ticks — The number of ticks to be displayed.
decimal — The number of decimals to be used for legend values.
notation — Legend notation: standard (default) or scientific.
callback — An optional callback to be used to format the legend labels.

Sets the labels of the legend of this Lut.

.setMin ( minV : Float ) : Lut

minV — 查找表所表示的最小值。

将查找表要表示的最小值设为该值。

.setMax ( maxV : Float ) : Lut

maxV — 查找表所表示的最小值。

将查找表要表示的最大值设为该值。

.changeNumberOfColors ( numberOfColors : Float ) : Lut

numberOfColors — 用于表示数据数组的颜色数量。

设置查找表中要使用的颜色的数量。

.changeColorMap ( colorMap : Float ) : Lut

colorMap — 用于表示数据数组的颜色表名称。

设置查找表的颜色表为传入的颜色表。

.addColorMap ( colorMapName, arrayOfColors ) : Lut

插入一个新的颜色表到可用颜色表中。

.getColor ( value ) : Lut this : Lut

value -- 作为颜色展示的数据值。

返回一个Color

源码

examples/jsm/math/Lut.js

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

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

发布评论

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