Property | Type | Description |
---|
Method | Description | |
---|---|---|
AddPoints ( |
Sets the function values given in the matrix m with generated values for x and y.
|
|
AddPoints ( |
Sets the z values given in the matrix m with the corresponding x and y values.
|
|
Deserialize ( byte content ) : |
Converts a set of bytes to a new instance.
|
|
Serialize ( ) : byte[] |
Converts the given instance to an array of bytes.
|
|
SurfacePlotValue ( ) : System |
Creates a new SurfacePlot.
|
|
this ( int index ) : Points |
Gets one particular series of the surface plot (we only have 1 surface plot series!).
|
|
this ( int index, int point ) : Vertex |
Gets one particular point of the surface plot.
|
public AddPoints ( |
||
m | The values for the plot. | |
return | void |
public AddPoints ( |
||
x | The matrix with the x values. | |
y | The matrix with the y values. | |
z | The matrix with the function values / z values. | |
return | void |
public Deserialize ( byte content ) : |
||
content | byte | The binary representation. |
return |
public this ( int index ) : Points |
||
index | int | Obsolete - all the same. |
return | Points |
public this ( int index, int point ) : Vertex | ||
index | int | Obsolete - all the same. |
point | int | The vertex to get (0.. N - 1, where N is the number of points). |
return | Vertex |