6 pure module function pdc_get_line_color(this) result(x)
7 class(plot_data_colored),
intent(in) :: this
9 if (this%m_useAutoColor)
then
10 x = color_list(this%get_color_index())
17 module subroutine pdc_set_line_color(this, x)
18 class(plot_data_colored),
intent(inout) :: this
19 type(color),
intent(in) :: x
21 this%m_useAutoColor = .false.
25 pure module function pdc_get_color_index(this) result(x)
26 class(plot_data_colored),
intent(in) :: this
32 module subroutine pdc_set_color_index(this, x)
33 class(plot_data_colored),
intent(inout) :: this
34 integer(int32),
intent(in) :: x