Nodes of different colours represent the following:
Module Graph
Solid arrows point from a parent (sub)module to the submodule which is
descended from it. Dashed arrows point from a module being used to the
module using it.
Type Graph
Solid arrows point from one derived type to another which extends
(inherits from) it. Dashed arrows point from a derived type to another
type containing it as a components, with a label listing the name(s) of
said component(s).
Call Graph
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Nodes of different colours represent the following:
Module Graph
Solid arrows point from a parent (sub)module to the submodule which is
descended from it. Dashed arrows point from a module being used to the
module using it.
Type Graph
Solid arrows point from one derived type to another which extends
(inherits from) it. Dashed arrows point from a derived type to another
type containing it as a components, with a label listing the name(s) of
said component(s).
Call Graph
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Variables
Type
Visibility
Attributes
Name
Initial
real(kind=pp),
public,
dimension(:), allocatable
::
xl
real(kind=pp),
public,
dimension(:), allocatable
::
y1l
real(kind=pp),
public,
dimension(:), allocatable
::
y0l
integer,
public
::
N
Source Code
subroutine fillBetween(x,y1,y0,fillColor,fillPattern,lineWidth)!! Fill space between two linesreal(wp),dimension(:),intent(in)::xreal(wp),dimension(:),intent(in)::y1real(wp),dimension(:),intent(in),optional::y0character(*),intent(in),optional::fillColorcharacter(*),intent(in),optional::fillPatternreal(wp),intent(in),optional::lineWidthreal(pp),dimension(:),allocatable::xl,y1l,y0linteger::NN=size(x)xl=localize(x)y1l=localize(y1)if(present(y0))theny0l=localize(y0)else allocate(y0l(N))y0l=0.0_ppend if if(present(fillColor))call setColor(fillColor)if(present(fillPattern))call setFillPattern(fillPattern)if(present(lineWidth))call setLineWidth(lineWidth)call plfill([xl(1:N:1),xl(N:1:-1)],[y1l(1:N:1),y0l(N:1:-1)])call resetPen()end subroutine fillBetween