Path: utzoo!censor!geac!torsqnt!news-server.csri.toronto.edu!cs.utexas.edu!usc!julius.cs.uiuc.edu!apple!gateway.qm.apple.com!sean_parent.snarkmail_l_z From: sean_parent.snarkmail_l_z@gateway.qm.apple.com (Sean Parent) Newsgroups: comp.sys.mac.programmer Subject: Re: Problems with SetLineWidth Message-ID: <11216@goofy.Apple.COM> Date: 12 Nov 90 17:45:48 GMT Sender: usenet@Apple.COM Organization: Apple Computer, Inc. Lines: 22 References:<1990Nov5.203354.14090@wam.umd.edu> <11125@goofy.Apple.COM> <1990Nov10.213656.2583@fennel.cc.uwa.oz.au> In article <1990Nov10.213656.2583@fennel.cc.uwa.oz.au> a_dent@fennel.cc.uwa.oz.au writes: > If I want to change line width to half point and back should I use: If the printer is not a LaserWriter SC then use: PenSize(1, 1) SetLineWidth(half) /* 1/2 x 1 (default) = 1/2 */ DrawLine /* draws line with pen size .5, .5 */ SetLineWidth(two) /* 2/1 x 1/2 = 1 */ DrawLine /* draws line with pen size 1, 1 */ If the priner is a LaserWriter SC then use: PenSize(1, 1) SetLineWidth(half) /* set to 1/2 */ DrawLine /* draws line with pen size .5, .5 */ SetLineWidth(one) /* set to 1 */ DrawLine /* draws line with pen size 1, 1 */ Sean Parent "Quality unattainable in a reasonable amount of time."