-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsurface_plot_example.f90
54 lines (42 loc) · 1.3 KB
/
surface_plot_example.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
program example
use fplot_core
use iso_fortran_env
implicit none
! Parameters
integer(int32), parameter :: m = 50
integer(int32), parameter :: n = 50
! Local Variables
real(real64), dimension(m, n, 2), target :: xy
real(real64), pointer, dimension(:,:) :: x, y
real(real64), dimension(m, n) :: z
type(surface_plot) :: plt
type(surface_plot_data) :: d1
class(plot_axis), pointer :: xAxis, yAxis, zAxis
type(rainbow_colormap) :: map
! Define the data
xy = meshgrid(linspace(-5.0d0, 5.0d0, n), linspace(-5.0d0, 5.0d0, m))
x => xy(:,:,1)
y => xy(:,:,2)
! Initialize the plot
call plt%initialize()
call plt%set_colormap(map)
! Establish lighting
call plt%set_use_lighting(.true.)
! Set the orientation of the plot
call plt%set_elevation(20.0d0)
call plt%set_azimuth(30.0d0)
! Define titles
call plt%set_title("Example Plot")
xAxis => plt%get_x_axis()
call xAxis%set_title("X Axis")
yAxis => plt%get_y_axis()
call yAxis%set_title("Y Axis")
zAxis => plt%get_z_axis()
call zAxis%set_title("Z Axis")
! Define the function to plot
z = sqrt(x**2 + y**2) * sin(x**2 + y**2)
call d1%define_data(x, y, z)
call plt%push(d1)
! Draw the plot
call plt%draw()
end program