blob: 94be30b4dce6e0aa0d9433ab7f91b7771ac225df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{bezierplot}[2019/06/18 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
|