tri_surface_plot_data Derived Type

type, public, extends(plot_data) :: tri_surface_plot_data

Provides a three-dimensional surface plot data set constructed of triangulated points.


Contents


Type-Bound Procedures

procedure, public :: define_data => tspd_define_data

  • private subroutine tspd_define_data(this, tri)

    Defines the data to plot.

    Arguments

    Type IntentOptional Attributes Name
    class(tri_surface_plot_data), intent(inout) :: this

    The tri_surface_plot_data object.

    class(delaunay_tri_surface), intent(in) :: tri

    The triangulation to plot.

procedure, public :: get_command_string => tspd_get_cmd

  • private function tspd_get_cmd(this) result(x)

    Gets the GNUPLOT command string for the object.

    Arguments

    Type IntentOptional Attributes Name
    class(tri_surface_plot_data), intent(in) :: this

    The tri_surface_plot_data object.

    Return Value character(len=:), allocatable

    The command string.

procedure, public :: get_data_string => tspd_get_data_cmd

  • private function tspd_get_data_cmd(this) result(x)

    Gets the GNUPLOT command string for representing the data.

    Arguments

    Type IntentOptional Attributes Name
    class(tri_surface_plot_data), intent(in) :: this

    The tri_surface_plot_data object.

    Return Value character(len=:), allocatable

    The command string.

procedure, public :: get_name => pd_get_name

  • private pure function pd_get_name(this) result(txt)

    Gets the name to associate with this data set.

    Arguments

    Type IntentOptional Attributes Name
    class(plot_data), intent(in) :: this

    The plot_data object.

    Return Value character(len=:), allocatable

    The name.

procedure, public :: get_use_wireframe => tspd_get_wireframe

  • private pure function tspd_get_wireframe(this) result(rst)

    Gets a value determining if a wireframe mesh should be displayed.

    Arguments

    Type IntentOptional Attributes Name
    class(tri_surface_plot_data), intent(in) :: this

    The tri_surface_plot_data object.

    Return Value logical

    Returns true if the plot is to be drawn as a wireframe; else, false to draw as a surface.

procedure, public :: set_name => pd_set_name

  • private subroutine pd_set_name(this, txt)

    Sets the name to associate with this data set.

    Arguments

    Type IntentOptional Attributes Name
    class(plot_data), intent(inout) :: this

    The plot_data object.

    character(len=*), intent(in) :: txt

    The name.

procedure, public :: set_use_wireframe => tspd_set_wireframe

  • private subroutine tspd_set_wireframe(this, x)

    Sets a value determining if a wireframe mesh should be displayed.

    Arguments

    Type IntentOptional Attributes Name
    class(tri_surface_plot_data), intent(inout) :: this

    The tri_surface_plot_data object.

    logical, intent(in) :: x

    Set to true if the plot is to be drawn as a wireframe; else, false to draw as a surface.