You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ( present(lspec) ) thenif (hastitle(lspec)) then
pltstring='splot '// datablock //''//trim(lspec) //' with lines' ! added 1 space in suffix
else
pltstring='splot '// datablock //' notitle '//trim(lspec) //' with lines' ! added 1 space in suffix
end ifelse
pltstring='splot '// datablock //' notitle with lines'end if
The text was updated successfully, but these errors were encountered:
To make a 3D line plot the call to
lplot3d()
does not require the keywordwith lines
as the regular 2D plot command does.For example:
But the code above will not work because
ogpf.f90
does not insert the required space beforewith lines
in the following lines of codeogpf/src/ogpf.f90
Line 1402 in 7b414be
ogpf/src/ogpf.f90
Line 1404 in 7b414be
I propose a fix to make the code look like
The text was updated successfully, but these errors were encountered: