Expand description
interface ILayerRenderInfo {
colorMapInterpolator: ColorMapInterpolator;
colorMapLabels: string[];
isColorMap?: boolean;
isPick?: boolean;
isSkip?: boolean;
opacity: number;
pickedComps?: number[];
}Properties§
§§§§§§
color Map Interpolator: ColorMapInterpolatorInterpolator for color mapping.
color Map Labels: string[]§is Color Map?: booleanIndicates if the layer is a color map.
is Pick?: booleanIndicates if the layer is for picking
is Skip?: booleanIndicates if the layer should be skipped in rendering.
opacity: numberOpacity of the layer.
picked Comps?: number[]Components that are picked, if any.
Interface for layer render information.