fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
|
Constructs a linearly spaced array. More...
Public Member Functions | |
procedure, pass, public | to_hex_string clr_to_hex_string |
Returns the color in hexadecimal format. | |
procedure, pass, public | copy_from clr_copy_from |
Copies another color to this color. | |
Public Attributes | |
integer(int32), public | red = 0 |
The red component of the color (must be between 0 and 255). | |
integer(int32), public | green = 0 |
The green component of the color (must be between 0 and 255). | |
integer(int32), public | blue = 255 |
The blue component of the color (must be between 0 and 255). | |
Constructs a linearly spaced array.
[in] | start | The first value in the array. |
[in] | finish | The last value in the array. |
[in] | npts | The number of values in the array. |
Construcst a logarithmically spaced array.
[in] | start | The exponent of the first value in the array. |
[in] | finish | The exponent of the final value in the array. |
[in] | npts | The number of values in the array. |
Constructs two matrices (X and Y) from x and y data arrays.
[in] | x | An M-element array of x data points. |
[in] | y | An N-element array of y data points. |
Describes an RGB color.
Definition at line 358 of file fplot_core.f90.
procedure, pass, public fplot_core::color::copy_from |
Copies another color to this color.
[in,out] | this | The color object. |
[in] | clr | The color to copy. |
Definition at line 385 of file fplot_core.f90.
procedure, pass, public fplot_core::color::to_hex_string |
Returns the color in hexadecimal format.
[in] | this | The color object. |
Definition at line 375 of file fplot_core.f90.
integer(int32), public fplot_core::color::blue = 255 |
The blue component of the color (must be between 0 and 255).
Definition at line 364 of file fplot_core.f90.
integer(int32), public fplot_core::color::green = 0 |
The green component of the color (must be between 0 and 255).
Definition at line 362 of file fplot_core.f90.
integer(int32), public fplot_core::color::red = 0 |
The red component of the color (must be between 0 and 255).
Definition at line 360 of file fplot_core.f90.