[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Initialisiert eine neue Matrix.

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

Syntax

C#
public Matrix3D(
	int width,
	int height,
	int depth
)
Visual Basic
Public Sub New ( _
	width As Integer, _
	height As Integer, _
	depth As Integer _
)
F#
new : 
        width:int * 
        height:int * 
        depth:int -> Matrix3D

Parameters

width
Type: System..::..Int32
Die Breite der Matrix.
height
Type: System..::..Int32
Die Höhe der Matrix.
depth
Type: System..::..Int32
Die Tiefe der Matrix.

Exceptions

ExceptionCondition
System..::..ArgumentExceptionWird geworfen, wenn für width, height oder depth ein Wert kleiner 0 übergeben wird.

See Also