From: Ian Jackson Date: Sat, 4 Nov 2017 23:08:17 +0000 (+0000) Subject: more doc comment updates X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=49b431a59c976989ec2a1b5aad36288585ddd434;p=moebius3.git more doc comment updates Signed-off-by: Ian Jackson --- diff --git a/moebius.py b/moebius.py index f40ed01..7d7f202 100644 --- a/moebius.py +++ b/moebius.py @@ -71,9 +71,11 @@ class MoebiusHalf: return BezierSegment(cp) def point(m, ix_u, t): ''' - 0 <= ix_u <= n_u meaning 0 <= u <= 1 + 0 <= ix_u <= n_u meaning 0 <= u <= 1 + along the extent 0 and 1 are both the top half of the flat traverse 0.5 is the bottom half of the flat traverse - 0 <= t <= 1 0 is the edge, 1 is the midline + 0 <= t <= 1 across the half-traverse + 0 is the edge, 1 is the midline ''' return m._beziers[ix_u].point_at_t(t)