diff options
Diffstat (limited to 'Master/texmf-dist/metapost/featpost')
-rw-r--r-- | Master/texmf-dist/metapost/featpost/featpost.mp | 2 | ||||
-rw-r--r-- | Master/texmf-dist/metapost/featpost/featpost3Dplus2D.mp | 10 |
2 files changed, 8 insertions, 4 deletions
diff --git a/Master/texmf-dist/metapost/featpost/featpost.mp b/Master/texmf-dist/metapost/featpost/featpost.mp new file mode 100644 index 00000000000..67c930e8a5d --- /dev/null +++ b/Master/texmf-dist/metapost/featpost/featpost.mp @@ -0,0 +1,2 @@ +input featpost3Dplus2D; + diff --git a/Master/texmf-dist/metapost/featpost/featpost3Dplus2D.mp b/Master/texmf-dist/metapost/featpost/featpost3Dplus2D.mp index 3c1c809eabd..06b7b76ca0c 100644 --- a/Master/texmf-dist/metapost/featpost/featpost3Dplus2D.mp +++ b/Master/texmf-dist/metapost/featpost/featpost3Dplus2D.mp @@ -23,7 +23,7 @@ % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the % GNU General Public License for more details. - message "Preloading FeatPost macros, version 0.8.2"; + message "Preloading FeatPost macros, version 0.8.3"; warningcheck := 0; background := 0.987white; @@ -4034,9 +4034,11 @@ ( Beam*sind( 0.5*(aang-bang) ) < 0 ): a := bpoi+Beam*dir(90+aang); - b := a-Beam*dir(aang); + b := a+0.5*Beam*dir(aang); %%% DANGER %%%%%0.5%%%%%%% + %draw b withpen pencircle scaled 3pt withcolor green; anew := bpoi+Beam*dir(90+bang); - c := anew+Beam*dir(bang); + c := anew-0.5*Beam*dir(bang); %%% DANGER %%0.5%%%%%%% + %draw c withpen pencircle scaled 3pt withcolor blue; pairvector[3*cou] = a; pairvector[3*cou+1] = b; pairvector[3*cou+2] = c; @@ -4307,4 +4309,4 @@ enddef; endgroup enddef; -% EOF
\ No newline at end of file +% EOF |