@@ -264,25 +264,47 @@ b -0.890 1.000
264264| label | N at X,Y S | puts a label at X,Y position |
265265|---------------+----------------+----------------------------------|
266266*** general: splot
267- |-------------+-------------+-----------------------------------|
268- | dgrid3d | N,N | ???? |
269- | xyplane | N | Z value where xyplane is |
270- | +ticslevel+ | N | " DEPRECATED |
271- | colorbox | - | color range box |
272- | pm3d | border lw 1 | surface with lines |
273- | isosamples | N | splot lines draw per xz axis |
274- | view | X,Z | 0-180 rotation around axis |
275- | hidden3d | - | non translucent (disables sample) |
276- | | | linestyle 1/2 for top/bottom |
277- | | | aka "hidden line removal" |
278- |-------------+-------------+-----------------------------------|
267+ |-------------+------------------------------+-----------------------------------|
268+ | dgrid3d | N,N | ???? |
269+ | xyplane | N | Z value where xyplane is |
270+ | +ticslevel+ | N | " DEPRECATED |
271+ | colorbox | - | color range box |
272+ | pm3d | border lw 1 | surface with lines |
273+ | isosamples | N | splot lines draw per xz axis |
274+ | view | X,Z | 0-180 rotation around axis |
275+ | contour | base | |
276+ | cntrparam | levels auto 9 | |
277+ | | levels discrete 1, -1 | |
278+ | | levels incremental -2 .05 .2 | |
279+ | | first 10 sort | |
280+ | hidden | | |
281+ | hidden3d | - | non translucent (disables sample) |
282+ | | | linestyle 1/2 for top/bottom |
283+ | | | aka "hidden line removal" |
284+ |-------------+------------------------------+-----------------------------------|
279285
280286#+begin_src gnuplot
281287 splot f(x,y) with pm3d # surface
282288 splot f(x,y) lc pal lw 2 # sets isolines color/thicc
283289 set lt 1 lc "seagreen" lw 3
284290#+end_src
285291
292+ *** palette
293+
294+ http://gnuplot.info/demo/pm3dcolors.html
295+
296+ #+begin_src gnuplot
297+ set palette gray
298+ set palette rgb 7,5,15
299+ set palette defined (0 0 0 0, 0.3 1 0 0, 0.6 "blue", 1 "#ffffff")
300+ set palette defined (0 "blue", 0.5 "red", 1 "white")
301+ set palette defined (0 "black", 0.5 "blue", 0.5 "red", 1 "white")
302+ set palette cubehelix start 0 cycles -1. saturation 1
303+ set palette cubehelix start 1.2 cycles -1 saturation 1
304+ set palette cubehelix start pi/2 cycles -1 saturation 1
305+ set palette cubehelix start pi/2 cycles -15 saturation 1
306+ #+end_src
307+
286308*** key
287309
288310|-----+---------------+-------------------------------|
@@ -328,22 +350,6 @@ b -0.890 1.000
328350- xterm (xterm tektronix mode)
329351- dumb (aka ascii)
330352
331- *** palette
332-
333- http://gnuplot.info/demo/pm3dcolors.html
334-
335- #+begin_src gnuplot
336- set palette gray
337- set palette rgb 7,5,15
338- set palette defined (0 0 0 0, 0.3 1 0 0, 0.6 "blue", 1 "#ffffff")
339- set palette defined (0 "blue", 0.5 "red", 1 "white")
340- set palette defined (0 "black", 0.5 "blue", 0.5 "red", 1 "white")
341- set palette cubehelix start 0 cycles -1. saturation 1
342- set palette cubehelix start 1.2 cycles -1 saturation 1
343- set palette cubehelix start pi/2 cycles -1 saturation 1
344- set palette cubehelix start pi/2 cycles -15 saturation 1
345- #+end_src
346-
347353* snippets
348354
349355- stream - draw last 200 lines, ten times per second
0 commit comments