NTPoly
Data Types | Functions/Subroutines
tripletmodule_wrp Module Reference

Wraps the triplet module for calling from other languages. More...

Data Types

type  triplet_wrp
 A wrapper for the triplet data type. More...
 

Functions/Subroutines

pure subroutine, public settriplet_wrp (ih_this, index_column, index_row, point_value)
 Set the values of a triplet. More...
 
pure subroutine, public gettripletvalues_wrp (ih_this, index_column, index_row, point_value)
 Get the values of a triplet. More...
 

Detailed Description

Wraps the triplet module for calling from other languages.

Function/Subroutine Documentation

◆ gettripletvalues_wrp()

pure subroutine, public tripletmodule_wrp::gettripletvalues_wrp ( integer(kind=c_int), dimension(size_wrp), intent(in)  ih_this,
integer(kind=c_int), intent(out)  index_column,
integer(kind=c_int), intent(out)  index_row,
real(ntreal), intent(out)  point_value 
)

Get the values of a triplet.

Parameters
[in]ih_thisthe triplet to extract the values of.
[out]index_columncolumn value.
[out]index_rowrow value.
[out]point_valueactual stored value.

◆ settriplet_wrp()

pure subroutine, public tripletmodule_wrp::settriplet_wrp ( integer(kind=c_int), dimension(size_wrp), intent(inout)  ih_this,
integer(kind=c_int), intent(in)  index_column,
integer(kind=c_int), intent(in)  index_row,
real(ntreal), intent(in)  point_value 
)

Set the values of a triplet.

Parameters
[in,out]ih_thishandle to the triplet to set the values of.
[in]index_columnthe column value.
[in]index_rowthe row value.
[in]point_valuethe value at that point.