X-Received: by 10.55.25.230 with SMTP id 99mr3225217qkz.41.1515433263912; Mon, 08 Jan 2018 09:41:03 -0800 (PST) X-Received: by 10.157.81.209 with SMTP id d17mr227442oth.6.1515433263776; Mon, 08 Jan 2018 09:41:03 -0800 (PST) Path: csiph.com!weretis.net!feeder6.news.weretis.net!feeder.usenetexpress.com!feeder-in1.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!m31no2952828qtf.0!news-out.google.com!t48ni1392qtc.1!nntp.google.com!m31no2952827qtf.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.graphics.apps.gnuplot Date: Mon, 8 Jan 2018 09:41:03 -0800 (PST) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=173.239.230.112; posting-account=Y2_fTgoAAADe5TlaOMc_Pba9V_8_6rvV NNTP-Posting-Host: 173.239.230.112 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: 3d plot with arrowstyle variable From: rmisko11@gmail.com Injection-Date: Mon, 08 Jan 2018 17:41:03 +0000 Content-Type: text/plain; charset="UTF-8" Lines: 23 Xref: csiph.com comp.graphics.apps.gnuplot:3848 I can get arrowstyle variable to work with 2D plots in gnuplot 5.0 patchlevel 3 but when I try it with 3d I get: "warning: arrowstyle 0 not found" My data file contents are: 0 0 0 40 40 40 1 1 40 40 40 100 0 0 4 4 140 40 40 0 100 0 4 4 140 140 40 -90 0 0 4 4 50 140 40 0 -90 0 4 4 50 50 40 80 0 0 4 4 130 50 40 -130 -50 -40 1 1 and my gnuplot file contains: set style arrow 1 head filled size screen 0.03,15,45 lw 2 lc rgb "cyan" set style arrow 4 head filled size screen 0.03,15,45 lw 2 lc rgb "blue" splot 'myData.dat' u 1:2:3:4:5:6:7 with vectors arrowstyle variable t '' I will appreciate any guidance on getting arrowstyle variable to work for 3D (splot).