final double offsetX2 = Math.cos( theta ) * getElementRadius( element2 );
final double offsetY2 = Math.sin( theta ) * getElementRadius( element2 );
final Context2d context = canvas.getContext2d();
context.moveTo( element1.getCoordinate().getX() + offsetX1,
element1.getCoordinate().getY() + offsetY1 );
context.lineTo( element2.getCoordinate().getX() - offsetX2,
element2.getCoordinate().getY() - offsetY2 );
context.setStrokeStyle( CssColor.make( 100, 100, 100 ) );
context.stroke();