wd237 = (wall) => {
const b = 10 * 5;
const axis = ({domain: [0, 1], tickSize: 0, tickFormat: _ => null});
return penciler(
Plot.plot({
width: b * 17, height: b * 15,
marginLeft: 0, marginRight: 0,
marginTop: 0, marginBottom: 0,
x: axis, y: axis,
style: {background: "#f0f0e9"},
marks: markers(wall)
}),
wall
);
}