[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Erweiterungsmethode für Matrix<(Of <(<'T>)>)> die ein Matrizenelement mit einem genormten Single-Wert zwischen 0 und 1 beschreibt.

Namespace: DynamicNode.Types.Imaging
Assembly: DataTypesAndTools (in DataTypesAndTools.dll) Version: 1.3.4679.19814 (1.3.0.0)

Syntax

C#
public static void SetColorValue(
	this Matrix<float> m,
	int x,
	int y,
	float value
)
Visual Basic
<ExtensionAttribute> _
Public Shared Sub SetColorValue ( _
	m As Matrix(Of Single), _
	x As Integer, _
	y As Integer, _
	value As Single _
)
F#
static member SetColorValue : 
        m:Matrix<float32> * 
        x:int * 
        y:int * 
        value:float32 -> unit 

Parameters

m
Type: DynamicNode.Types.Base..::..Matrix<(Of <(<'Single>)>)>
Die Byte-Matrix.
x
Type: System..::..Int32
Die Spalte des Matrizenelements.
y
Type: System..::..Int32
Die Zeile des Matrizenelements..
value
Type: System..::..Single
Der Wert, der auf das Intervall 0..1 begrenzt wird.

See Also