Skip to content

homework-4-l-systems-byumjin created by GitHub Classroom

Notifications You must be signed in to change notification settings

byumjin/Lsystem

 
 

Repository files navigation

CIS 566 Project 4: L-systems

  • Univer sity of Pennsylvania
  • pennkey : byumjin
  • name : Byumjin Kim

Live Demo

Overview

Using L-system, I have created a tree consists of branches, leaves and flowers.

GUI

  • Axiom : The axiom.
  • Iteration : Iteration counter.
  • Angle : The angle of rotation of the turtle.
  • Colors : The colors of each mesh the turtle draws.
  • Sizes : The scale of each mesh the turtle draws. (Due to the Probability for Organic variation, scale for each object won't be identical)
  • Wind : Wind direction and its strength.

Rule

  • F : Move forward by line length drawing a line

  • 1 : Turn left by turning angle along X axis

  • 2 : Turn right by turning angle along X axis

  • 3 : Turn left by turning angle along Z axis

  • 4 : Turn right by turning angle along Z axis

  • 5 : Turn left by turning angle along y axis

  • 6 : Turn right by turning angle along Y axis

  • [ : Push current drawing state onto stack

  • ] : Pop current drawing state from the stack

  • L : Generate a flower

  • Y : Generate a bunch of leaves

  • F -> FF (80%) or F -> F (20%)

  • X -> [1FY][F11X]F[F22X]F[F33X]F[Y44X][3[Y4L[5L][6L]]]Y (90%) or

  • X -> [1F][F11X]F[F22X]F[F33X]F[6L][F44X][3FL] (10%)

  • This is because of Probability for Organic variation

  • Each mesh has random scale along its random generated number generated by Math.Random()

Detail

  • Expanding Axiom : I used two javascript arrays, which are previous Axiom and current Axiom, to expand my axiom. Whenever it iterates to expand its axiom, current axiom stores the lates expanded axiom and copy its data to previous axiom when it steps over to next stage.

  • A big VBO : Instead of drawing individual mesh components one at a time, we can push all VBO data to the GPU at once after we've finished parsing our entire string for drawing. It makes it draw way faster but when we need to re-generate this (eg. changing some of GUI values above ), it can make lags because it may need to re-create a new big VBO again.

  • Wind animations for tree : Using vertex shader, we can make simple wind animation with using each vertex position and pivot point chosened by the developer. First, make a wave along the world's x and z position. Then, get up vector like current vertex's position - pivot point (Of course this cannot get accurate up vector of each mesh segment, but if we are using one big VBO it is impossible to make model matrix or invTrans matrix per each mesh segment ). After do cross product between both, we can get biTangent vector which can be the standard vector for rotating our vertices. Finally, using appropriate stiffness and time seed values, we can wiggle our mesh segment along with wind direction.

OBJ loading

This project uses webgl-obj-loader to load OBJ files.

Reference

L-System User Notes

Libraries

webgl-obj-loader

About

homework-4-l-systems-byumjin created by GitHub Classroom

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 83.4%
  • GLSL 15.2%
  • Other 1.4%