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
ColormapPixel.Green Property
The green value of the pixel.
public double Green { get; set; }
Property Value
ColormapPixel.Red Property
The red value of the pixel.
public double Red { get; set; }
Property Value
ColormapPixel.Value Property
The value of the pixel.
public double Value { get; set; }