Which JDK are you using?
They are integrated into JDK1.3, so if you are using that, you don't need to
download anything.

To use the Graphics2D context you just have to cast your Graphics context to
Graphics2D.  e.g....


import java.awt.Graphics2D;

class Foo
{
        public void paint(Graphics g)
        {
                Graphics2D g2 = (Graphics2D)g;
                g2.foo();
        }
}




-----Original Message-----
From: Shahzad Mahmood [mailto:[EMAIL PROTECTED]]
Sent: 22 August 2001 07:21
To: [EMAIL PROTECTED]
Subject: [JAVA2D] Where to download java2d API jars


hi all,

Can someone tell me, where from I can download java 2D API jars.

Thanks in advance

Shahzad Mahmood

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA2D-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".


Visit our website at http://www.rm.com

Standard Disclaimer:This message is confidential.  You should not copy it or
disclose its contents to anyone.  You may use and apply the information only
for the intended purpose.  Internet communications are not secure and
therefore RM does not accept legal responsibility for the contents of this
message.  Any views or opinions presented are only those of the author and
not those of RM.  If this email has come to you in error please delete it
and any attachments.  Please note that RM may intercept incoming and
outgoing e-mail communications.

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA2D-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to