Sujet : Re: IBM, sonic delay lines, and the history of the 80x24 display
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.miscDate : 30. Apr 2024, 21:18:46
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <v0rjn6$2lnd6$1@dont-email.me>
References : 1 2
User-Agent : Pan/0.155 (Kherson; fc5a80b8)
On 30 Apr 2024 15:55:04 GMT, Stefan Ram wrote:
|You have to wrap your commits in seventy-two characters. You have |to
end your lines at seventy-nine characters.
I typically have my editor window widths set at about 100 characters.
And I use them all.
It is true that, in normal text, short lines are easier to read than
long ones (hence why newspapers have so many columns). But in
programming, a lot of my lines is taken up with indentation. So the
nonblank parts are not necessarily that long. E.g.
scallop = Path \
(
[
Path.Segment
(
points =
(
Path.Point((0, 0), False),
Path.Point
(
pt = Vector(1, 1) * (1 - params["fraction"]) / 2 * step,
off = False
),
Path.Point
(
pt =
Vector(1, 1) * step * params["sharpness"] / 2
+
Vector(1, 1) * 2 * params["depth"] * step_normal,
off = True,
),
Path.Point
(
pt =
Vector(1, 1) * step * (1 - params["sharpness"] / 2)
+
Vector(1, 1) * 2 * params["depth"] * step_normal,
off = True,
),
Path.Point
(
pt = Vector(1, 1) * (1 - (1 - params["fraction"]) / 2) * step,
off = False
),
Path.Point
(
pt = Vector(1, 1) * step,
off = False
)
),
closed = False
)
]
).transform(Matrix.scale(scallop_size))