Defines an arrow that can be drawn on a plot.
Gets the color of the arrow.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(in) | :: | this |
The plot_arrow object. |
The color.
Returns the appropriate GNUPLOT command string to establish appropriate parameters.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(in) | :: | this |
The plot_arrow object. |
The GNUPLOT command string.
Gets the angle of the arrow head.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(in) | :: | this |
The plot_arrow object. |
The angle, in degrees.
Gets the angle of the back of the arrow head.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(in) | :: | this |
The plot_arrow object. |
The angle, in degrees.
Gets a flag denoting the head fill type.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(in) | :: | this |
The plot_arrow object. |
The flag denoting head fill.
Gets the coordinates of the arrow's head.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(in) | :: | this |
The plot_arrow object. |
A 3-element array containing the x, y, and z coordinates of the arrow's head.
Gets the size of the arrow head.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(in) | :: | this |
The plot_arrow object. |
The head size.
Gets the type of arrow head.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(in) | :: | this |
The plot_arrow object. |
The arrow head type.
Gets a value determining if the arrow is visible.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(in) | :: | this |
The plot_arrow object. |
True if the arrow is visible; else, false.
Gets the line style used to draw the arrow.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(in) | :: | this |
The plot_arrow object. |
The line style.
Gets the width of the lines used to draw the arrow.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(in) | :: | this |
The plot_arrow object. |
The width of the line.
Gets a value determining if the arrow should be moved to the front.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(in) | :: | this |
The plot_arrow object. |
True if the arrow should be moved to the front; else, false.
Gets the coordinates of the arrow's tail.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(in) | :: | this |
The plot_arrow object. |
A 3-element array containing the x, y, and z coordinates of the arrow's tail.
Gets a value determining if arrow head sizing defaults should be used.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(in) | :: | this |
The plot_arrow object. |
True if the defaults should be used; else, false.
Sets the color of the arrow.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
type(color), | intent(in) | :: | x |
The color. |
Sets the angle of the arrow head.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
real(kind=real32), | intent(in) | :: | x |
The angle, in degrees. |
Sets the angle of the back of the arrow head.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
real(kind=real32), | intent(in) | :: | x |
The angle, in degrees. |
Sets a flag denoting the head fill type.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
integer(kind=int32), | intent(in) | :: | x |
The flag denoting head fill. It must be one of the following constants.
If the value is not one of the above, the command is ignored. |
Sets the location of the arrow's head.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
real(kind=real32), | intent(in) | :: | x(3) |
A 3-element array containing the x, y, and z coordinates of the arrow's head. |
Sets the location of the arrow's head.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
real(kind=real32), | intent(in) | :: | x |
The x-coordinate of the arrow's head. |
||
real(kind=real32), | intent(in) | :: | y |
The y-coordinate of the arrow's head. |
Sets the location of the arrow's head.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
real(kind=real32), | intent(in) | :: | x |
The x-coordinate of the arrow's head. |
||
real(kind=real32), | intent(in) | :: | y |
The y-coordinate of the arrow's head. |
||
real(kind=real32), | intent(in) | :: | z |
The z-coordinate of the arrow's head. |
Sets the size of the arrow head.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
real(kind=real32), | intent(in) | :: | x |
The head size. |
Sets the type of arrow head.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
integer(kind=int32), | intent(in) | :: | x |
The arrow head type. It must be one of the following constants.
If the value is not one of the above, the command is ignored. |
Sets a value determining if the arrow is visible.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
logical, | intent(in) | :: | x |
True if the arrow is visible; else, false. |
Sets the line style used to draw the arrow.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
integer(kind=int32), | intent(in) | :: | x |
The line style. The value must be one of the following.
If the value is not one of the above, the command is ignored. |
Sets the width of the lines used to draw the arrow.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
real(kind=real32), | intent(in) | :: | x |
The width of the line. |
Sets a value determining if the arrow should be moved to the front.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
logical, | intent(in) | :: | x |
True if the arrow should be moved to the front; else, false. |
Sets the coordinates of the arrow's tail.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
real(kind=real32), | intent(in) | :: | x(3) |
A 3-element array containing the x, y, and z coordinates of the arrow's tail. |
Sets the coordinates of the arrow's tail.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
real(kind=real32), | intent(in) | :: | x |
The x-coordinate of the arrow's tail. |
||
real(kind=real32), | intent(in) | :: | y |
!! The y-coordinate of the arrow's tail. |
Sets the coordinates of the arrow's tail.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
real(kind=real32), | intent(in) | :: | x |
The x-coordinate of the arrow's tail. |
||
real(kind=real32), | intent(in) | :: | y |
The y-coordinate of the arrow's tail. |
||
real(kind=real32), | intent(in) | :: | z |
The z-coordinate of the arrow's tail. |
Sets a value determining if arrow head sizing defaults should be used.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_arrow), | intent(inout) | :: | this |
The plot_arrow object. |
||
logical, | intent(in) | :: | x |
True if the defaults should be used; else, false. |