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