The basics

The underlying drawing model is that points are added to paths, then the paths can be filled and/or stroked, using the current graphics state, which specifies colors, line thicknesses and patterns, and opacity. You can modify the drawing space by transforming/rotating/scaling it before you add graphics.

Many of the drawing functions have an action argument. This can be :nothing, :fill, :stroke, :fillstroke, :fillpreserve, :strokepreserve, :clip. The default is :nothing.

Positions are usually specified either by x and y coordinates or a Point(x, y). Angles are usually in radians, measured starting at the positive x-axis turning towards the positive y-axis (which usually points 'down' the page or canvas) in radians: 'clockwise'.

Coordinates are specified in PostScript points, where a point is 1/72 of an inch. Three other units are available for distances:

Because Julia allows you to combine numbers and variables directly, you can type, for example:

rect(Point(20mm, 2cm), 5inch, 22/7inch, :fill)

Types

The main defined types are Point, Drawing, and Tiler. The Point type holds two coordinates, x and y:

Point(12.0, 13.0)

It's immutable, so you want to avoid trying to change the x or y coordinate directly. You can use the letter O as a shortcut to refer to the current Origin, Point(0, 0).

Drawing is how you create new drawings. And you can divide up the drawing area into tiles, using Tiler.

Drawings and files

To create a drawing, and optionally specify the filename and type, and dimensions, use the Drawing constructor function.

Luxor.DrawingType.

Create a new drawing, and optionally specify file type (PNG, PDF, SVG, or EPS) and dimensions.

Drawing()

creates a drawing, defaulting to PNG format, default filename "luxor-drawing.png", default size 800 pixels square.

You can specify dimensions, and use the default target filename:

Drawing(400, 300)

creates a drawing 400 pixels wide by 300 pixels high, defaulting to PNG format, default filename "luxor-drawing.png".

Drawing(400, 300, "my-drawing.pdf")

creates a PDF drawing in the file "my-drawing.pdf", 400 by 300 pixels.

Drawing(1200, 800, "my-drawing.svg")`

creates an SVG drawing in the file "my-drawing.svg", 1200 by 800 pixels.

Drawing(1200, 1200/golden, "my-drawing.eps")

creates an EPS drawing in the file "my-drawing.eps", 1200 wide by 741.8 pixels (= 1200 ÷ ϕ) high.

Drawing("A4", "my-drawing.pdf")

creates a drawing in ISO A4 size (595 wide by 842 high) in the file "my-drawing.pdf". Other sizes available are: "A0", "A1", "A2", "A3", "A4", "A5", "A6", "Letter", "Legal", "A", "B", "C", "D", "E". Append "landscape" to get the landscape version.

Drawing("A4landscape")

creates the drawing A4 landscape size.

PDF files default to a white background, but PNG defaults to transparent, unless you specify one using background().

source

To finish a drawing and close the file, use finish(), and, to launch an external application to view it, use preview().

If you're using Jupyter (IJulia), preview() displays PNG files in the notebook.

jupyter

Luxor.finishFunction.
finish()

Finish the drawing, and close the file. You may be able to open it in an external viewer application with preview().

source
Luxor.previewFunction.
preview()

If working in Jupyter (IJUlia), display a PNG file in the notebook. On macOS, open the file, which probably uses the default, Preview.app. On Unix, open the file with xdg-open. On Windows, pass the filename to the shell.

source

The global variable currentdrawing (of type Drawing) holds a few parameters which are occasionally useful:

julia> fieldnames(currentdrawing)
10-element Array{Symbol,1}:
:width
:height
:filename
:surface
:cr
:surfacetype
:redvalue
:greenvalue
:bluevalue
:alpha

The drawing area

The origin (0/0) starts off at the top left: the x axis runs left to right, and the y axis runs top to bottom.

The origin() function moves the 0/0 point to the center of the drawing. It's often convenient to do this at the beginning of a program. You can use functions like scale(), rotate(), and translate() to change the coordinate system.

background() fills the image with a color, covering any previous contents. By default, PDF files have a white background, whereas PNG drawings have no background, so the background appears transparent in other applications. If there is a current clipping region, background() fills just that region. Here, the first background() filled the entire drawing; the calls in the loop fill only the active clipping region, a tile defined by the Tiler iterator:

background("magenta")
tiles = Tiler(600, 400, 5, 5, margin=30)
for (pos, n) in tiles
    box(pos, tiles.tilewidth, tiles.tileheight, :clip)
    background(randomhue()...)
    clipreset()
end

background

The axes() function draws a couple of lines and text labels in light gray to indicate the position and orientation of the current axes.

background("gray80")
origin()
axes()

axes

Luxor.backgroundFunction.
background(color)

Fill the canvas with a single color. Returns the (red, green, blue, alpha) values.

Examples:

background("antiquewhite")
background("ivory")

If Colors.jl is installed:

background(RGB(0, 0, 0))
background(Luv(20, -20, 30))

If you don't specify a background color for a PNG drawing, the background will be transparent. You can set a partly or completely transparent background for PNG files by passing a color with an alpha value, such as this 'transparent black':

background(RGBA(0, 0, 0, 0))
source
Luxor.axesFunction.

Draw and label two axes lines starting at O, the current 0/0, and continuing out along the current positive x and y axes.

source
Luxor.originFunction.
origin()

Reset the current matrix, and then set the 0/0 origin to the center of the drawing (otherwise it will stay at the top left corner, the default).

You can refer to the 0/0 point as O. (O = Point(0, 0)),

source

Tiles

The drawing area (or any other area) can be divided into rectangular tiles (as rows and columns) using the Tiler iterator, which returns the center point and tile number of each tile.

In this example, every third tile is divided up into subtiles and colored:

tiles = Tiler(400, 300, 4, 5, margin=5)
for (pos, n) in tiles
    randomhue()
    box(pos, tiles.tilewidth, tiles.tileheight, :fill)
    if n % 3 == 0
        gsave()
        translate(pos)
        subtiles = Tiler(tiles.tilewidth, tiles.tileheight, 4, 4, margin=5)
        for (pos1, n1) in subtiles
            randomhue()
            box(pos1, subtiles.tilewidth, subtiles.tileheight, :fill)
        end
        grestore()
    end
    sethue("white")
    textcentred(string(n), pos + Point(0, 5))
end

tiler

Luxor.TilerType.
tiles = Tiler(areawidth, areaheight, nrows, ncols, margin=20)

A Tiler is an iterator that, for each iteration, returns a tuple of:

  • the x/y point of the center of each tile in a set of tiles that divide up a rectangular space such as a page into rows and columns (relative to current 0/0)

  • the number of the tile

areawidth and areaheight are the dimensions of the area to be tiled, nrows/ncols are the number of rows and columns required, and margin is applied to all four edges of the area before the function calculates the tile sizes required.

tiles = Tiler(1000, 800, 4, 5, margin=20)
for (pos, n) in tiles
# the point pos is the center of the tile
end

You can access the calculated tile width and height like this:

tiles = Tiler(1000, 800, 4, 5, margin=20)
for (pos, n) in tiles
  ellipse(pos.x, pos.y, tiles.tilewidth, tiles.tileheight, :fill)
end
source

Save and restore

gsave() saves a copy of the current graphics settings (current axis rotation, position, scale, line and text settings, color, and so on). When the next grestore() is called, all changes you've made to the graphics settings will be discarded, and they'll return to how they were when you last used gsave(). gsave() and grestore() should always be balanced in pairs.

Luxor.gsaveFunction.
gsave()

Save the current color settings on the stack.

source
Luxor.grestoreFunction.
grestore()

Replace the current graphics state with the one on top of the stack.

source

Simple shapes

Functions for making shapes include rect(), box(), circle(), ellipse(), squircle(), arc(), carc(), curve(), sector(), and pie(). There's also ngon() and star(), listed under Polygons, below.

Rectangles and boxes

rects

Luxor.rectFunction.
rect(xmin, ymin, w, h, action)

Create a rectangle with one corner at (xmin/ymin) with width w and height h and then do an action.

See box() for more ways to do similar things, such as supplying two opposite corners, placing by centerpoint and dimensions.

source
rect(cornerpoint, w, h, action)

Create a rectangle with one corner at cornerpoint with width w and height h and do an action.

source
Luxor.boxFunction.
box(cornerpoint1, cornerpoint2, action=:nothing)

Create a rectangle between two points and do an action.

source
box(points::Array, action=:nothing)

Create a box/rectangle using the first two points of an array of Points to defined opposite corners.

source
box(pt::Point, width, height, action=:nothing; vertices=false)

Create a box/rectangle centered at point pt with width and height. Use vertices=true to return an array of the four corner points rather than draw the box.

source
box(x, y, width, height, action=:nothing)

Create a box/rectangle centered at point x/y with width and height.

source
Luxor.polybboxFunction.

Find the bounding box of a polygon (array of points).

polybbox(pointlist::Array)

Return the two opposite corners (suitable for box(), for example).

source

Circles, ellipses, and other curvey things

There are various ways to make circles, including by center and radius, or passing through two points:

p1 = O
p2 = Point(100, 0)
sethue("red")
circle(p1, 40, :fill)
sethue("green")
circle(p1, p2, :stroke)
sethue("black")
arrow(O, Point(0, -40))
map(p -> circle(p, 4, :fill), [p1, p2])

circles

Or passing through three points. The center3pts() function returns the center position and radius of a circle passing through three points:

sethue("black")
p1 = Point(0, -50)
p2 = Point(100, 0)
p3 = Point(0, 65)
map(p -> circle(p, 4, :fill), [p1, p2, p3])
circle(center3pts(p1, p2, p3)..., :stroke)

center and radius of 3 points

With ellipse() you can place ellipses (and circles) by defining the center point and the width and height.

tiles = Tiler(500, 300, 5, 5)
width = 20
height = 25
for (pos, n) in tiles
    randomhue()
    ellipse(pos, width, height, :fill)
    sethue("black")
    label = string(round(width/height, 2))
    textcentered(label, pos.x, pos.y + 25)
    width += 2
end

ellipses

It's also possible to make polygonal approximations to ellipses from two focal points and a distance.

f1 = Point(-100, 0)
f2 = Point(100, 0)
ellipsepoly = ellipse(f1, f2, 170, :none, vertices=true)
[ begin
    poly(offsetpoly(ellipsepoly, c), close=true, :stroke);
    circle(f1, 2, :fill)
    circle(f2, 2, :fill)
    rotate(pi/48)
  end
     for c in 150:-5:1 ]

more ellipses

Luxor.circleFunction.
circle(x, y, r, action=:nothing)

Make a circle of radius r centred at x/y.

action is one of the actions applied by do_action, defaulting to :nothing. You can also use ellipse() to draw circles and place them by their centerpoint.

source
circle(pt, r, action)

Make a circle centred at pt.

source
circle(pt1::Point, pt2::Point, action=:nothing)

Make a circle that passes through two points that define the diameter:

source
Luxor.ellipseFunction.

Make an ellipse, centered at xc/yc, fitting in a box of width w and height h.

ellipse(xc, yc, w, h, action=:none)
source

Make an ellipse, centered at point c, with width w, and height h.

ellipse(cpt, w, h, action=:none)
source
ellipse(focus1::Point, focus2::Point, k, action=:none;
         stepvalue=pi/100,
         vertices=false,
         reversepath=false)

Build a polygon approximation to an ellipse, given two points and a distance, k, which is the sum of the distances to the focii of any points on the ellipse (or the shortest length of string required to go from one focus to the perimeter and on to the other focus).

source

circlepath() constructs a circular path from Bèzier curves, which allows you to use circles as paths.

setline(4)
tiles = Tiler(600, 250, 1, 5)
for (pos, n) in tiles
    randomhue()
    circlepath(pos, tiles.tilewidth/2, :path)
    newsubpath()
    circlepath(pos, rand(5:tiles.tilewidth/2 - 1), :fill, reversepath=true)
end

circles as paths

Luxor.circlepathFunction.
circlepath(center::Point, radius, action=:none;
    reversepath=false,
    kappa = 0.5522847)

Draw a circle using Bézier curves.

source

A sector (strictly an "annular sector") has an inner and outer radius, as well as start and end angles.

sector(50, 90, pi/2, 0, :fill)

sector

You can supply a value for corner radius. The same sector is drawn but with rounded corners.

sector(50, 90, pi/2, 0, 15, :fill)

sector

Luxor.sectorFunction.
sector(innerradius, outerradius, startangle, endangle, action=:none)

Make an annular sector centered at the current 0/0 point.

source
sector(innerradius, outerradius, startangle, endangle, cornerradius, action=:none)

Draw an annular sector with rounded corners, basically a bent sausage shape.

TODO: The results aren't 100% accurate at the moment. There are small discontinuities where the curves join.

The cornerradius is reduced from the supplied value if neceesary to prevent overshoots.

source

A pie (or wedge) has start and end angles.

pie(0, 0, 100, pi/2, pi, :fill)

pie

Luxor.pieFunction.
pie(x, y, radius, startangle, endangle, action=:none)

Make a pie shape centered at x/y. Angles start at the positive x-axis and are measured clockwise.

source
pie(centerpoint, radius, startangle, endangle, action=:none)

Make a pie shape centered at centerpoint.

Angles start at the positive x-axis and are measured clockwise.

source

A squircle is a cross between a square and a circle. You can adjust the squariness and circularity of it to taste:

setline(2)
tiles = Tiler(600, 250, 1, 3)
for (pos, n) in tiles
    sethue("lavender")
    squircle(pos, 80, 80, rt=[0.3, 0.5, 0.7][n], :fillpreserve)
    sethue("grey20")
    stroke()
    textcentered("rt = $([0.3, 0.5, 0.7][n])", pos)
end

squircles

Luxor.squircleFunction.

Make a squircle (basically a rectangle with rounded corners). Specify the center position, horizontal radius (distance from center to a side), and vertical radius (distance from center to top or bottom):

squircle(center::Point, hradius, vradius, action=:none; rt = 0.5, vertices=false)

The rt option defaults to 0.5, and gives an intermediate shape. Values less than 0.5 make the shape more square. Values above make the shape more round.

source

Or for a simple rounded rectangle, smooth the corners of a box, like so:

setline(4)
polysmooth(box(O, 200, 150, vertices=true), 10, :stroke)

rounded rect

Arcs and curves

curve() constructs Bèzier curves from control points:

setline(.5)
pt1 = Point(0, -125)
pt2 = Point(200, 125)
pt3 = Point(200, -125)

sethue("red")
map(p -> circle(p, 4, :fill), [O, pt1, pt2, pt3])

line(O, pt1, :stroke)
line(pt2, pt3, :stroke)

sethue("black")
setline(3)

move(O)
curve(pt1, pt2, pt3)
stroke()

curve

There are a few arc-drawing commands, such as arc(), carc(), and arc2r(). arc2r() draws a circular arc that joins two points:

tiles = Tiler(700, 200, 1, 6)
for (pos, n) in tiles
    c1, pt2, pt3 = ngon(pos, rand(10:50), 3, rand(0:pi/12:2pi), vertices=true)
    sethue("black")
    map(pt -> circle(pt, 4, :fill), [c1, pt3])
    sethue("red")
    circle(pt2, 4, :fill)
    randomhue()
    arc2r(c1, pt2, pt3, :stroke)
end

arc

Luxor.arcFunction.

Add an arc to the current path from angle1 to angle2 going clockwise.

arc(xc, yc, radius, angle1, angle2, action=:nothing)

Angles are defined relative to the x-axis, positive clockwise.

source

Arc with centerpoint.

arc(centerpoint::Point, radius, angle1, angle2, action=:nothing)
source
Luxor.arc2rFunction.
  arc2r(c1, p2, p3, action=:nothing)

Make a circular arc centered at c1 that starts at p2 and ends at p3, going clockwise.

c1-p2 really determines the radius. If p3 doesn't lie on the circular path, it will be used only as an indication of the arc's length, rather than its position.

source
Luxor.carcFunction.

Add an arc to the current path from angle1 to angle2 going counterclockwise.

carc(xc, yc, radius, angle1, angle2, action=:nothing)

Angles are defined relative to the x-axis, positive clockwise.

source
Luxor.curveFunction.

Draw a Bézier curve.

 curve(x1, y1, x2, y2, x3, y3)
 curve(p1, p2, p3)

The spline starts at the current position, finishing at x3/y3 (p3), following two control points x1/y1 (p1) and x2/y2 (p2)

source

Lines and positions

There is a 'current position' which you can set with move(), and can use implicitly in functions like line(), text(), and curve().

Luxor.moveFunction.
move(x, y)
move(pt)

Move to a point.

source
Luxor.rmoveFunction.
rmove(x, y)

Move by an amount from the current point. Move relative to current position by x and y:

Move relative to current position by the pt's x and y:

rmove(pt)
source
Luxor.lineFunction.
line(x, y)
line(x, y, :action)
line(pt)

Create a line from the current position to the x/y position and optionally apply an action:

source
line(pt1::Point, pt2::Point, action=:nothing)

Make a line between two points, pt1 and pt2 and do an action.

source
Luxor.rlineFunction.
rline(x, y)
rline(x, y, :action)
rline(pt)

Create a line relative to the current position to the x/y position and optionally apply an action:

source

Geometry tools

You can find the midpoint between two points using midpoint().

The following code places a small pentagon at the midpoint of each side of a larger pentagon:

sethue("red")
ngon(O, 100, 5, 0, :stroke)

sethue("darkgreen")
p5 = ngon(O, 100, 5, 0, vertices=true)

for i in eachindex(p5)
    pt1 = p5[mod1(i, 5)]
    pt2 = p5[mod1(i + 1, 5)]
    midp = midpoint(pt1, pt2)
    ngon(midp, 20, 5, 0, :fill)
end

arc

A more general function, between(), finds for a value x the corresponding point on a line defined by two points, normalized to the range 0 and 1. So midpoint(p1, p2) and between(p1, p2, 0.5) should return the same point.

sethue("red")
p1 = Point(-150, 0)
p2 = Point(150, 40)
line(p1, p2)
stroke()
for i in -0.5:0.1:1.5
    randomhue()
    circle(between(p1, p2, i), 5, :fill)
end

arc

Values less than 0.0 and greater than 1.0 appear to work well too, placing the point on the line if extended.

Luxor.midpointFunction.
midpoint(p1, p2)

Find the midpoint between two points.

source
midpoint(a)

Find midpoint between the first two elements of an array of points.

source
Luxor.betweenFunction.
between(p1::Point, p2::Point, x)

Find the point between point p1 and point p2 for x, where x is typically between 0 and 1, so these two should be equivalent:

between(p1, p2, 0.5)

and

midpoint(p1, p2)
source

center3pts() finds the radius and center point of a circle passing through three points which you can then use with functions such as circle() or arc2r().

Luxor.center3ptsFunction.
center3pts(a::Point, b::Point, c::Point)

Find the radius and center point for three points lying on a circle.

returns (centerpoint, radius) of a circle. Then you can use circle() to place a circle, or arc() to draw an arc passing through those points.

If there's no such circle, then you'll see an error message in the console and the function returns (Point(0,0), 0).

source

intersection() finds the intersection of two lines.

pt1, pt2, pt3, pt4 = ngon(O, 100, 5, vertices=true)
line(pt1, pt2, :stroke)
line(pt3, pt4, :stroke)
flag, ip =  intersection(pt1, pt2, pt3, pt4)
if flag
    circle(ip, 5, :fill)
end

arc

intersection_line_circle() finds the intersection of a line and a circle. There can be 0, 1, or 2 intersections.

l1 = Point(-100.0, -75.0)
l2 = Point(300.0, 100.0)
rad = 100
cpoint = Point(0, 0)
line(l1, l2, :stroke)
circle(cpoint, rad, :stroke)
nints, ip1, ip2 =  intersection_line_circle(l1, l2, cpoint, rad)
sethue("black")
if nints == 2
    circle(ip1, 8, :stroke)
    circle(ip2, 8, :stroke)
end

arc

Luxor.intersectionFunction.
intersection(p1::Point, p2::Point, p3::Point, p4::Point)

Find intersection of two lines p1-p2 and p3-p4

This returns a tuple: (boolean, point(x, y)).

Keyword options and default values:

crossingonly = false

returns (true, Point(x, y)) if the lines intersect somewhere. If crossingonly = true, returns (false, intersectionpoint) if the lines don't cross, but would intersect at intersectionpoint if continued beyond their current endpoints.

commonendpoints = false

If commonendpoints= true, will return (false, Point(0, 0)) if the lines share a common end point (because that's not so much an intersection, more a meeting).

Function returns (false, Point(0, 0)) if the lines are undefined,

source
intersection_line_circle(p1::Point, p2::Point, cpoint::Point, r)

Find the intersection points of a line (extended through points p1 and p2) and a circle.

Return a tuple of (n, pt1, pt2)

where

  • n is the number of intersections, 0, 1, or 2

  • pt1 is first intersection point, or Point(0, 0) if none

  • pt2 is the second intersection point, or Point(0, 0) if none

The calculated intersection points wont necessarily lie on the line segment between p1 and p2.

source

getnearestpointonline() finds perpendiculars.

end1, end2, pt3 = ngon(O, 100, 3, vertices=true)
map(pt -> circle(pt, 5, :fill), [end1, end2, pt3])
line(end1, end2, :stroke)
arrow(pt3, getnearestpointonline(end1, end2, pt3))

arc

getnearestpointonline(pt1::Point, pt2::Point, startpt::Point)

Given a line from pt1 to pt2, and startpt is the start of a perpendicular heading to meet the line, at what point does it hit the line?

source

Arrows

You can draw lines or arcs with arrows at the end with arrow(). For straight arrows, supply the start and end points. For arrows as circular arcs, you provide center, radius, and start and finish angles. You can optionally provide dimensions for the arrowheadlength and arrowheadangle of the tip of the arrow (angle in radians between side and center). The default line weight is 1.0, equivalent to setline(1)), but you can specify another.

arrow(O, Point(0, -65))
arrow(O, Point(100, -65), arrowheadlength=20, arrowheadangle=pi/4, linewidth=.3)
arrow(O, 100, pi, pi/2, arrowheadlength=25,   arrowheadangle=pi/12, linewidth=1.25)

arrows

Luxor.arrowFunction.
arrow(startpoint::Point, endpoint::Point;
    linewidth = 1.0,
    arrowheadlength = 10,
    arrowheadangle = pi/8)

Draw a line between two points and add an arrowhead at the end. The arrowhead length will be the length of the side of the arrow's head, and the arrowhead angle is the angle between the sloping side of the arrowhead and the arrow's shaft.

Arrows don't use the current linewidth setting (setline()), and defaults to 1, but you can specify another value. It doesn't need stroking/filling, the shaft is stroke()d and the head fill()ed with the current color.

source
arrow(centerpos::Point, radius, startangle, endangle;
    linewidth = 1.0,
    arrowheadlength = 10,
    arrowheadangle = pi/8)

Draw a curved arrow, an arc centered at centerpos starting at startangle and ending at endangle with an arrowhead at the end. Angles are measured clockwise from the positive x-axis.

Arrows don't use the current linewidth setting (setline()); you can specify the linewidth.

source

Paths

A path is a group of points. A path can have subpaths (which can form holes).

The getpath() function gets the current path as an array of elements, lines and curves. getpathflat() gets the current path as an array of lines with all curves flattened to line segments.

textpath("N")
pathdata = getpathflat()
outline = Point[]
for i in pathdata[1:end-1]
    if length(i.points) == 2
        x = i.points[1]
        y = i.points[2]
        push!(outline, Point(x, y))
    end
end
poly(outline, :stroke, close=true)
for i in 5:5:35
    poly(offsetpoly(outline, i), :stroke, close=true)
end

get path

Luxor.newpathFunction.
newpath()

Create a new path. This is Cairo's new_path() function.

source
Luxor.newsubpathFunction.
newsubpath()

Add a new subpath to the current path. This is Cairo's new_sub_path() function. It can be used for example to make holes in shapes.

source
Luxor.closepathFunction.
closepath()

Close the current path. This is Cairo's close_path() function.

source
Luxor.getpathFunction.
getpath()

Get the current path and return a CairoPath object, which is an array of element_type and points objects. With the results you can step through and examine each entry:

o = getpath()
for e in o
      if e.element_type == Cairo.CAIRO_PATH_MOVE_TO
          (x, y) = e.points
          move(x, y)
      elseif e.element_type == Cairo.CAIRO_PATH_LINE_TO
          (x, y) = e.points
          # straight lines
          line(x, y)
          stroke()
          circle(x, y, 1, :stroke)
      elseif e.element_type == Cairo.CAIRO_PATH_CURVE_TO
          (x1, y1, x2, y2, x3, y3) = e.points
          # Bezier control lines
          circle(x1, y1, 1, :stroke)
          circle(x2, y2, 1, :stroke)
          circle(x3, y3, 1, :stroke)
          move(x, y)
          curve(x1, y1, x2, y2, x3, y3)
          stroke()
          (x, y) = (x3, y3) # update current point
      elseif e.element_type == Cairo.CAIRO_PATH_CLOSE_PATH
          closepath()
      else
          error("unknown CairoPathEntry " * repr(e.element_type))
          error("unknown CairoPathEntry " * repr(e.points))
      end
  end
source
Luxor.getpathflatFunction.
getpathflat()

Get the current path, like getpath() but flattened so that there are no Bèzier curves.

Returns a CairoPath which is an array of element_type and points objects.

source

Julia graphics

A couple of functions in Luxor provide you with instant access to the Julia logo, and the three colored circles:

for (pos, n) in Tiler(750, 250, 1, 2)
    gsave()
    translate(pos - Point(150, 100))
    if n == 1
        julialogo()
    elseif n == 2
        julialogo(action=:clip)
        for i in 1:500
            gsave()
            translate(rand(0:400), rand(0:250))
            juliacircles(10)
            grestore()
        end
        clipreset()
    end
    grestore()
end

get path

Function.
julialogo(;action=:fill, color=true)

Draw the Julia logo. The logo's dimensions are about 330 wide and 240 high:

translate(-330/2, -240/2)
julialogo()

The default action is to fill the logo and use colors:

julialogo()

To use the logo as a clipping mask:

julialogo(action=:clip)

(In this case the color setting is automatically ignored.)

If color is false, the logo will use the current color.

source
Luxor.juliacirclesFunction.
juliacircles(radius=100)

Draw the three Julia circles in color at the origin using the given radius.

source

Miscellaneous

hypotrochoid() makes hypotrochoids.

origin()
background("grey20")
sethue("antiquewhite")
setline(1.5)
hypotrochoid(40, 1, 80, :stroke, stepby=pi/2000, period=pi)

hypotrochoid

Luxor.hypotrochoidFunction.
hypotrochoid(R, r, d, action=:none; stepby=0.1, period=0)

Draw a hypotrochoid with short line segments. (Like a Spirograph.) The curve is traced by a point attached to a circle of radius r rolling around the inside of a fixed circle of radius R, where the point is a distance d from the center of the interior circle.

stepby controls the detail level. If period is not supplied, or 0, the lowest period is calculated (somewhat approximately at the moment), and also returned in terms of 2pi.

Special cases include the hypocycloid, if d = r, and an ellipse, if R = 2r.

The polygon might be split if the number of line segments gets too large (currently over 1200).

source