dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Model

ColormapPixel Class

Represents a pixel in a colormap.

public class ColormapPixel :
System.IEquatable<dymaptic.GeoBlazor.Core.Model.ColormapPixel>

Inheritance System.Object 🡒 ColormapPixel

Implements System.IEquatable<ColormapPixel>

Constructors

ColormapPixel(double, double, double, double) Constructor

Represents a pixel in a colormap.

public ColormapPixel(double Value, double Red, double Green, double Blue);

Parameters

Value System.Double

The value of the pixel.

Red System.Double

The red value of the pixel.

Green System.Double

The green value of the pixel.

Blue System.Double

The blue value of the pixel.

Properties

ColormapPixel.Blue Property

The blue value of the pixel.

public double Blue { get; set; }

Property Value

System.Double

ColormapPixel.Green Property

The green value of the pixel.

public double Green { get; set; }

Property Value

System.Double

ColormapPixel.Red Property

The red value of the pixel.

public double Red { get; set; }

Property Value

System.Double

ColormapPixel.Value Property

The value of the pixel.

public double Value { get; set; }

Property Value

System.Double