fplot 1.7.1
A Fortran library providing a convenient interface for plotting with Gnuplot.
Loading...
Searching...
No Matches
fplot_axis.f90
1! fplot_axis.f90
2
3submodule(fplot_core) fplot_axis
4contains
5! ******************************************************************************
6! X_AXIS MEMBERS
7! ------------------------------------------------------------------------------
8 module function xa_get_id(this) result(x)
9 class(x_axis), intent(in) :: this
10 character(len = :), allocatable :: x
11 x = this%m_id
12 end function
13
14! ******************************************************************************
15! Y_AXIS MEMBERS
16! ------------------------------------------------------------------------------
17 module function ya_get_id(this) result(x)
18 class(y_axis), intent(in) :: this
19 character(len = :), allocatable :: x
20 x = this%m_id
21 end function
22
23! ******************************************************************************
24! Y2_AXIS MEMBERS
25! ------------------------------------------------------------------------------
26 module function y2a_get_id(this) result(x)
27 class(y2_axis), intent(in) :: this
28 character(len = :), allocatable :: x
29 x = this%m_id
30 end function
31
32! ******************************************************************************
33! Z_AXIS MEMBERS
34! ------------------------------------------------------------------------------
35 module function za_get_id(this) result(x)
36 class(z_axis), intent(in) :: this
37 character(len = :), allocatable :: x
38 x = this%m_id
39 end function
40
41end submodule
fplot_core