import javax.swing.*;
import java.awt.*;
import java.awt.geom.*;
public class JStrokeJavaExample extends JFrame
{
public void paint(Graphics gr)
{
super.paint(gr);
Graphics2D GR2D = (Graphics2D)gr;
BasicStroke strk = new BasicStroke(15.0f,
BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND);
GR2D.setStroke(strk);
GR2D.draw(new Rectangle2D.Double(50, 50, 100, 100));
}
public static void main(String[] ar)
{
JStrokeJavaExample frm = new JStrokeJavaExample();
frm.setSize(180, 200);
frm.setVisible(true);
}
}
Dinesh Thakur holds an B.SC (Computer Science), MCSE, MCDBA, CCNA, CCNP, A+, SCJP certifications. Dinesh authors the hugely popular Computer Notes blog. Where he writes how-to guides around Computer fundamental , computer software, Computer programming, and web apps. For any type of query or something that you think is missing, please feel free to Contact us.
Related Articles
Basic Courses
Advance Courses