Tagged Questions
The l-systems tag has no wiki summary.
3
votes
2answers
463 views
Designing L-System data structures (C++)
I'm trying to design data structure for an implementation of L-System rewriting engine in C++ and I just can't seem to get anywhere :(.
I need to store a string of symbols (characters). There are be ...
3
votes
3answers
708 views
Information on L-Systems
Hey Stack Overflow folks,
I am about to start a project for university to build a procedural city for a pre existing project.
I was wondering if any of you have had any experience coding L-Systems ...
2
votes
1answer
107 views
Overlapping trees in L-system forest
I created an a program using python's turtle graphics that simulates tree growth in a forest. There's 3 tree patterns that are randomly chosen, and their starting coordinates and angles are randomly ...
2
votes
1answer
153 views
restoring recorded state in l-system code using turtle graphics
I'm using turtle graphics to reproduce l-systems (TurtleWorld library). The rules I have tried to apply work well when they don't involve going back to a previous saved state, but whenever there is a ...
2
votes
1answer
960 views
OpenGL L-System Rendering
Hey guys, i have gotten my basic L-System working and i decided to try and optimize the rendering of the application. Previous i was looping through the whole string of the L-System with a switch case ...
1
vote
1answer
237 views
Dragon Curve in Python
I created a program to draw a dragon curve using turtle graphics.. but my result doesn't really look like the picture does in the link:
One problem I noticed is that I want to save the produced ...
1
vote
0answers
159 views
Using haskell midi library and parsec for L-system music
I am trying to generate music with an L-system using haskell. I use something like the following to generate my song.
musicgen mylist 4 = mylist
musicgen mylist generation = musicgen (multiReplace ...
0
votes
0answers
38 views
L-System - Decrease cylinder radius for newer branches
I have a simple 3D L-System made from cylinders, and I currently just go through each symbol in the final string and do appropriate actions like draw, turn, rotate, push and pop. I am aware that push ...
0
votes
0answers
46 views
Maya and OpenAlea Lpy compatibility
Hello I'm trying to import openalea lpy using Autodesk Mayas python console. When I use the mayapy console I can import the module using:
import openalea.lpy as lpy
However when I try to do this ...