Last active
June 13, 2017 12:35
-
-
Save AnimeshShaw/7087470 to your computer and use it in GitHub Desktop.
Tree fractal in Java.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.awt.Color; | |
import java.awt.Graphics; | |
import javax.swing.JFrame; | |
import javax.swing.JPanel; | |
import javax.swing.SwingUtilities; | |
/** | |
* @author psychocoder | |
*/ | |
public class L_Systems_Tree extends JPanel { | |
private static final long serialVersionUID = 1L; | |
public L_Systems_Tree() { | |
} | |
private void drawTree(Graphics g, int x1, int y1, double angle, int depth) { | |
if (depth == 0) | |
return; | |
int x2 = x1 + (int) (Math.cos(Math.toRadians(angle)) * depth * 12.0); | |
int y2 = y1 + (int) (Math.sin(Math.toRadians(angle)) * depth * 12.0); | |
g.drawLine(x1, y1, x2, y2); | |
drawTree(g, x2, y2, angle - 20, depth - 1); | |
drawTree(g, x2, y2, angle + 20, depth - 1); | |
} | |
@Override | |
public void paintComponent(Graphics g) { | |
g.setColor(Color.DARK_GRAY); | |
drawTree(g, getWidth() / 2, getHeight(), -90, 10); | |
} | |
public static void main(String... args) { | |
final JFrame frame = new JFrame("L Systems - Tree Fractal"); | |
SwingUtilities.invokeLater(new Runnable() { | |
@Override | |
public void run() { | |
frame.setContentPane(new L_Systems_Tree()); | |
frame.setSize(1000, 700); | |
frame.setLocationRelativeTo(null); | |
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); | |
frame.setResizable(true); | |
frame.setVisible(true); | |
} | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment