<div dir="ltr">I&#39;m experimenting with subclassing PasteUpMorph to get some additional behavior. One thing I want to do is have my subclass open with a CircleMorph at 0@0. I already get that behavior, the CircleMorph in the upper left corner, but want my subclass&#39; origin to be at its center, and the CircleMorph drawn there. My current initialize method,<div><br></div><div><div>initialize</div><div><span class="" style="white-space:pre">        </span>&quot;&quot;</div><div><br></div><div><span class="" style="white-space:pre">        </span>super initialize.</div><div><span class="" style="white-space:pre">        </span>self originAtCenter; addMorph: ((CircleMorph new) color: Color white) centeredNear: 0@0.</div><div><br></div><div>still places it in the upper left corner.</div><div><br></div><div>How do I get the origin, 0@0, at the center?</div><div><br></div><div>My only other method, so far, sets my subclass default bounds.</div><div><br></div><div><div>defaultBounds</div><div>&quot;answer the default bounds for the receiver&quot;</div><div><span class="" style="white-space:pre">        </span>^ 0 @ 0 corner: 400 @ 400</div></div><div><br></div><div> </div></div></div>