Nodes of different colours represent the following:
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.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Nodes of different colours represent the following:
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.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Module Procedures
private pure function compute_Xg_nurbs_1d(Xt, knot, degree, nc, ng, Xc, Wc) result(Xg)
Author
Seyed Ali Ghasemi
License
BSD 3-Clause
Arguments
Type
Intent
Optional
Attributes
Name
real(kind=rk),
intent(in),
contiguous
::
Xt(:)
real(kind=rk),
intent(in),
contiguous
::
knot(:)
integer,
intent(in)
::
degree
integer,
intent(in)
::
nc
integer,
intent(in)
::
ng
real(kind=rk),
intent(in),
contiguous
::
Xc(:,:)
real(kind=rk),
intent(in),
contiguous
::
Wc(:)
Return Value
real(kind=rk), allocatable, (:,:)
private pure function compute_Xg_bspline_1d(Xt, knot, degree, nc, ng, Xc) result(Xg)