if (do_name() != 'Home') : ?>
endif ?>
Posted by Josh Caswell on Oct 29, 2009
Well, the code that Tom shared a few posts earlier could get you started. You can also access your NodeBox path's underlying NSBezierPath and do this:
from AppKit import NSRoundLineCapStyle autoclosepath(False) beginpath(100, 500) curveto(200,250, 600,600, 400,300) path = endpath(draw=False) nofill() stroke(0) strokewidth(12) path._nsBezierPath.setLineCapStyle_(NSRoundLineCapStyle) drawpath(path)
Posted by Tom De Smedt on Oct 29, 2009
And there's some more documentation on linecaps by Giorgio here.
Posted by Dimitre Lima on Nov 05, 2009
include("util/comment.php"); ?>
Thanks Tom and Josh!
Stroke properties
Posted by Dimitre on Oct 25, 2009Is it possible to define stroke terminations (butt,round,square) and corners (miter,round,bevel)?
Thanks