<div dir="auto">One way is to make a subclass of BoxedMorph and implement drawOn: to draw whatever you want. Your method for #drawOn: will receive an instance of a subclass of MorphicCanvas as argument, and you can send messages to the canvas to draw. But this is more oriented to vector graphics, not really pixel graphics.</div><div dir="auto"><br></div><div dir="auto">If you want to draw pixels, you can create an instance of a Form and draw pixels on it. For example, in a workspace you can do this:</div><div dir="auto">  form := Form extent: 100@100</div><div dir="auto">followed by alt-p. You will see a white form of 100x100 pixels in the workspace.</div><div dir="auto">Then draw something on it:</div><div dir="auto">  10 to: 50 do: [:i| form colorAt: i@i put: Color red]</div><div dir="auto">followed by alt-d.</div><div dir="auto"><br></div><div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, 31 May 2022 at 9:34 AM tuxic via Cuis-dev <<a href="mailto:cuis-dev@lists.cuis.st">cuis-dev@lists.cuis.st</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204)">Hi,<br>
<br>
...since I do not find...<br>
I am looking for a classe which allows me to oben a<br>
window/plane/whatever in which I can set points via commands...hrrmmm...<br>
sorry....to which I can send messages like plot to do simple pixel<br>
graphics...<br>
Is there something like this?<br>
(May be this is a simple language problem and I search only for the<br>
wrong words ...)<br>
<br>
Cheers!<br>
Meino<br>
<br>
-- <br>
Cuis-dev mailing list<br>
<a href="mailto:Cuis-dev@lists.cuis.st" target="_blank">Cuis-dev@lists.cuis.st</a><br>
<a href="https://lists.cuis.st/mailman/listinfo/cuis-dev" rel="noreferrer" target="_blank">https://lists.cuis.st/mailman/listinfo/cuis-dev</a><br>
</blockquote></div></div>