blob: 26e76f0e25bf90d4172cb9c6fcc1935bd2bf4c23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{bezierplot}[2018/06/10 bezierplot]
\RequirePackage{xparse}
\RequirePackage{iftex}
\ifLuaTeX
\directlua{require("bezierplot")}
\DeclareExpandableDocumentCommand{\xbezierplot}{O{-5} O{5} O{-5} O{5} O{tikz} m}{%
\directlua{tex.sprint(bezierplot("#6",#1,#2,#3,#4,"#5"))}
}
\else
\let\xpandblinpt\@@input
\DeclareExpandableDocumentCommand{\xbezierplot}{O{-5} O{5} O{-5} O{5} O{tikz} m}{%
\xpandblinpt|"bezierplot '#6' #1 #2 #3 #4 '#5'"
}
\fi
\providecommand\bezierplot{\romannumeral`\^^@\xbezierplot}
\endinput
|