Eric Clack
Eric Clack

Reputation: 1926

Where's the Pen class in Pharo?

I want to use the Pen class to teach some basic geometry at my local code club. I can do this with Squeak, but what about Pharo?

p := Pen new.
p go: 100.

I recall reading that the Pen class has been removed from core Pharo, so is there a way to add it back? Or should I stick to Squeak for this sort of programming?

Upvotes: 4

Views: 443

Answers (2)

Sean DeNigris
Sean DeNigris

Reputation: 6390

Gofer it
    squeaksource: 'PharoNonCorePackages';
    package: 'BitBltPen';
    load.

Then you can Display restoreAfter: [Pen example]

Tested in Pharo 3.0 Update #30826

Upvotes: 2

MartinW
MartinW

Reputation: 5041

It was present till Pharo 1.3.

You can file out the BitBltPen package from a Pharo 1.3 image and file it in a Pharo 3 Beta image. I just tried it and it seems to work.

Upvotes: 0

Related Questions