C# 클래스 ImageMagick.DoubleMatrix

Encapsulates a matrix of doubles.
파일 보기 프로젝트 열기: dlemstra/Magick.NET 1 사용 예제들

공개 메소드들

메소드 설명
GetValue ( int x, int y ) : double

Gets the value at the specified x/y position.

SetColumn ( int x ) : void

Set the column at the specified x position.

SetRow ( int y ) : void

Set the row at the specified y position.

SetValue ( int x, int y, double value ) : void

Set the value at the specified x/y position.

ToArray ( ) : double[]

Returns a string that represents the current DoubleMatrix.

this ( int x, int y ) : double

Get or set the value at the specified x/y position.

보호된 메소드들

메소드 설명
DoubleMatrix ( int order, double values ) : System

Initializes a new instance of the DoubleMatrix class.

비공개 메소드들

메소드 설명
CreateInstance ( DoubleMatrix instance ) : INativeInstance
CreateNativeInstance ( ) : INativeInstance
GetIndex ( int x, int y ) : int

메소드 상세

DoubleMatrix() 보호된 메소드

Initializes a new instance of the DoubleMatrix class.
protected DoubleMatrix ( int order, double values ) : System
order int The order.
values double The values to initialize the matrix with.
리턴 System

GetValue() 공개 메소드

Gets the value at the specified x/y position.
public GetValue ( int x, int y ) : double
x int The x position
y int The y position
리턴 double

SetColumn() 공개 메소드

Set the column at the specified x position.
public SetColumn ( int x ) : void
x int The x position
리턴 void

SetRow() 공개 메소드

Set the row at the specified y position.
public SetRow ( int y ) : void
y int The y position
리턴 void

SetValue() 공개 메소드

Set the value at the specified x/y position.
public SetValue ( int x, int y, double value ) : void
x int The x position
y int The y position
value double The value
리턴 void

ToArray() 공개 메소드

Returns a string that represents the current DoubleMatrix.
public ToArray ( ) : double[]
리턴 double[]

this() 공개 메소드

Get or set the value at the specified x/y position.
public this ( int x, int y ) : double
x int The x position
y int The y position
리턴 double