C# 클래스 YAMP.Plot3DValue

Container for 3D plots.
상속: XYZPlotValue
파일 보기 프로젝트 열기: FlorianRappl/YAMP 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
AddPoints ( MatrixValue m ) : void

Adds a series with points given in a matrix m.

AddPoints ( MatrixValue x, MatrixValue y, MatrixValue z ) : void

Adds a series with points given by 3 matrices.

AddValues ( double _x, double _y, double _z ) : void
Deserialize ( byte content ) : Value

Converts a set of bytes to a new instance.

Plot3DValue ( ) : System

Creates a new instance.

Serialize ( ) : byte[]

Converts the given instance to an array of bytes.

this ( int index, int point ) : PointTriple

Gets a certain point of the specified series.

this ( int index ) : Points

Gets the series at the specified index.

메소드 상세

AddPoints() 공개 메소드

Adds a series with points given in a matrix m.
public AddPoints ( MatrixValue m ) : void
m MatrixValue The matrix with the points (requires at least an Nx3 or 3xN matrix).
리턴 void

AddPoints() 공개 메소드

Adds a series with points given by 3 matrices.
public AddPoints ( MatrixValue x, MatrixValue y, MatrixValue z ) : void
x MatrixValue The vector with the x values.
y MatrixValue The vector with the y values.
z MatrixValue The vector with the z values.
리턴 void

AddValues() 공개 메소드

public AddValues ( double _x, double _y, double _z ) : void
_x double
_y double
_z double
리턴 void

Deserialize() 공개 메소드

Converts a set of bytes to a new instance.
public Deserialize ( byte content ) : Value
content byte The binary representation.
리턴 Value

Plot3DValue() 공개 메소드

Creates a new instance.
public Plot3DValue ( ) : System
리턴 System

Serialize() 공개 메소드

Converts the given instance to an array of bytes.
public Serialize ( ) : byte[]
리턴 byte[]

this() 공개 메소드

Gets a certain point of the specified series.
public this ( int index, int point ) : PointTriple
index int The 0-based index of the series.
point int The 0-based index of the point.
리턴 PointTriple

this() 공개 메소드

Gets the series at the specified index.
public this ( int index ) : Points
index int The 0-based index of the series.
리턴 Points