Canvas(xlim=c(-5,5))
DrawCircle( radius=4:1, col=c("white","steelblue2","white","red"), lwd=3, nv=300)
x <- seq(-3,3, length.out=18)
par(bg="black")
plot( x=c(-5,5), y=c(-5,5), asp=1, type="n", xaxt="n", yaxt="n", xlab="", ylab="")
sapply( (0:12) * pi/6, function(theta) {
xy <- Rotate( x, y=0, theta=theta )
DrawCircle( x=xy$x, y=xy$y, radius=2.4, border="white", col="transparent" )
} )
Run the code above in your browser using DataLab