Usage
qscene.points(s, x, y, radius=1)
qscene.lines(s, x, y, lwd=0)
qscene.segments(s, x1, y1, x2, y2, lwd=0)
qscene.rect(s, x, y, w=1, h=1)
Arguments
s
The scene, a C++ QGraphicsScene
x
The X coordinates, as expected by xy.coords
, recycled y
The Y coordinates, as expected by xy.coords
, recycled radius
The scalar radius for the points, in device coordinates
lwd
The vector of line widths, in device coordinates, recycled
x1
The first X coordinates, recycled
y1
The first Y coordinates, recycled
x2
The second X coordinates, recycled
y2
The second Y coordinates, recycled
w
Vector of rectangle widths, recycled
h
Vector of rectangle heights, recycled