Unplugged Viz
High-performance scientific visualization isn't just for the workstation anymore
|
Base class for plot views. More...
Static Public Attributes | |
static readonly BindableProperty | DataRangeProperty |
BindableProperty for the Data property. More... | |
static readonly BindableProperty | ColorMapProperty |
BindableProperty for the ColorMap property. More... | |
static readonly BindableProperty | ColorMapRangeProperty |
BindableProperty for the ColorMapRange property. More... | |
static readonly BindableProperty | ColorMapMinimumProperty |
BindableProperty for the minimum value of the ColorMapRange property. More... | |
static readonly BindableProperty | ColorMapMaximumProperty |
BindableProperty for the maximum value of the ColorMapRange property. More... | |
Properties | |
virtual IEnumerable | Data [get, set] |
Gets or sets a data array. More... | |
IEnumerable | ScaledData [get, set] |
The Data, scaled into an array of bytes using the ColorMapRange More... | |
ShapeFBase | DataRange [get, set] |
An ShapeFBase defining the numeric values of the horizontal and vertical axes. More... | |
RectangleF | ViewRectangle [get, set] |
A RectangleF defining the portion of data actually visible, More... | |
Color[] | ColorMap [get, set] |
An array of Colors defining how the data are displayed. More... | |
Additional Inherited Members | |
Public Member Functions inherited from Durwella.Unplugged.Viz.ViewBase | |
void | Update () |
Update the ViewRender that is rendering this view. More... | |
Base class for plot views.
|
static |
BindableProperty for the maximum value of the ColorMapRange property.
|
static |
BindableProperty for the minimum value of the ColorMapRange property.
|
static |
BindableProperty for the ColorMap property.
|
static |
BindableProperty for the ColorMapRange property.
|
static |
BindableProperty for the Data property.
|
getset |
An array of Colors defining how the data are displayed.
The values in the ColorMap array are evenly distributed between ColorMaxMinimum and ColorMapMaximum, and the displayed color is determined by interpolation.
|
getset |
Gets or sets a data array.
The Data should be an array of bytes, ints, or floats. The Rank of the array depends on which view is being used.
|
getset |
An ShapeFBase defining the numeric values of the horizontal and vertical axes.
If DataRange is a RectangleF with x = y = width = height = 0, or a RangeF with x = y = 0, axes will not be displayed.
|
getset |
The Data, scaled into an array of bytes using the ColorMapRange
|
getset |
A RectangleF defining the portion of data actually visible,
All parameters should be between 0.0f and 1.0f.