diff options
Diffstat (limited to 'graphics/pgf/contrib/luatikz/example/circle.lua')
-rw-r--r-- | graphics/pgf/contrib/luatikz/example/circle.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/graphics/pgf/contrib/luatikz/example/circle.lua b/graphics/pgf/contrib/luatikz/example/circle.lua new file mode 100644 index 0000000000..ba85c04e5a --- /dev/null +++ b/graphics/pgf/contrib/luatikz/example/circle.lua @@ -0,0 +1,12 @@ +tikz.within( '*' ) + +draw{ + circle{ + at = p{ 0, 0 }, + radius = 2, + }, + circle{ + at = p{ 2, 1 }, + radius = 1, + } +} |