<div dir="ltr">Does anyone do this? How do you do it? I've been using these two methods, maybe someone will find them useful.<div><div><div><br></div><div>bench<br>    | canvas form |<br>    form := Form extent: self morphExtent depth: Display depth.<br>    canvas := VectorCanvas onForm: form.<br>    ^ [self drawOn: canvas] bench<br></div><div><br></div><div>timeProfile<br>    | canvas form |<br>    form := Form extent: self morphExtent depth: Display depth.<br>    canvas := VectorCanvas onForm: form.<br>    ^ [200 timesRepeat: [self drawOn: canvas]] timeProfile<br></div></div></div></div>