Skip to main content

Display images generated by L-Systems.

Project description

L-System

An L-system or Lindenmayer system is a parallel rewriting system and a type of formal grammar. An L-system consists of an alphabet of symbols that can be used to make strings, a collection of production rules that expand each symbol into some larger string of symbols, an initial "axiom" string from which to begin construction, and a mechanism for translating the generated strings into geometric structures. L-systems were introduced and developed in 1968 by Aristid Lindenmayer, a Hungarian theoretical biologist and botanist at the University of Utrecht. Lindenmayer used L-systems to describe the behaviour of plant cells and to model the growth processes of plant development. L-systems have also been used to model the morphology of a variety of organisms and can be used to generate self-similar fractals.1

Installation

You can download and install the latest release using pip.

pip install LSystemRenderer

Usage

After installing the latest version you can run the script as follows:

lsystem-gui lsystem=LSYSTEM_NAME

Where LSYSTEM_NAME is the name of the L-System configuration file. There are several configuration files provided, but you can create your own custom L-System configuration as well.

Implemented L-Systems
1. dragon_curve
2. hexagonal_gosper_curve
3. koch_snowflake
4. koch_quadratic_island
5. plant_edge_rewriting_1
6. plant_edge_rewriting_2
7. plant_node_rewriting_1
8. plant_node_rewriting_2
9. sierpinsky_triangle
10. squared_squares
11. stochastic_plant_edge_rewriting

Plant Edge Rewriting 1

Plant Edge Rewriting 1

Plant Edge Rewriting 2

Plant Edge Rewriting 2

Plant Node Rewriting 1

Plant Node Rewriting 1

Plant Node Rewriting 2

Plant Node Rewriting 2

Stochastic Plant Edge Rewriting

Stochastic Plant Edge Rewriting

Configuration File Structure

The main config.yaml file extends application and lsystem configuration files. This file contains the default configuration of the application when it is called without command line arguments.

defaults:
  - app: APP_CONFIG
  - lsystem: LSYSYSTEM_CONFIG

L-System Configuration

The lsystem *.yaml files contains the following:

  1. Name of the L-System
_target_: lsystem.config.LSystemConfig
name: LSYSTEM_NAME
  1. Context-free grammar $G = (N, T, P, S)$ of the L-System:
    • $N$ - a list of non-terminal symbols $n \in N$ (appear on the left side of the rules)
    • $T$ - a list of terminal symbol $t \in T$ (only appear on the right side of the rules)
    • $P$ - a list of production rules in the form of $N \rightarrow (N \cup T)^*$
    • $S$ - starting axiom, $S = (N \cup T)^*$
grammar:
  _target_: lsystem.model.grammar.Grammar.from_dict
  nonterminals: LIST_OF_NONTERMINAL_SYMBOLS
  terminals: LIST_OF_TERMINAL_SYMBOLS
  rules: LIST_OF_RULES
  axiom: STARTING_AXIOM
  1. Renderer configuration for the L-System:

    • line_segment_length - starting length of the line segments

    • line_segment_length_reduction - percentage length reduction with each successive generation (step)

    • angle_offset - angle by which the renderer turns to the left/right

    • instruction_mapping - dictionary mapping symbols $s \in N \cup T$ to their corresponding renderer instuctions from InstructionEnum:

      • NOP - no operation
      • FORWARD - draw line segment of given length in the direction the renderer is facing
      • LEFT - turn left by a number of degrees
      • RIGHT - turn right by a number of degrees
      • SAVE - push the (X, Y, angle) state of the renderer onto a stack
      • LOAD - pop the (X, Y, angle) state of the renrerer from a stack
    • starting_state - starting state of the renderer:

      • x - starting X coordinate
      • y - starting Y coordinate
      • angle - starting angle
renderer_config:
  line_segment_length: LENGHT_PIXELS
  line_segment_length_reduction: LENGTH_REDUCTION_PERCENTAGE
  angle_offset: ANGLE_IN_DEGREES
  
  instruction_mapping:
    _target_: lsystem.mapping.InstructionMapping.from_dict
    map: INSTRUCTION_DICT

  starting_state:
    _target_: lsystem.renderer.RendererState
    x: STARTING_X
    y: STARTING_Y
    angle: STARTING_ANGLE

L-System Configuration File Example

Example of a lsystem configuration file dragon_curve.yaml:

_target_: lsystem.config.LSystemConfig
name: "Dragon Curve L-System"

grammar:
  _target_: lsystem.model.grammar.Grammar.from_dict
  nonterminals: [F, G]
  terminals: [+, -]
  rules: [
    [F, F+G],
    [G, F-G]
  ]
  axiom: F

renderer_config:
  line_segment_length: 50
  line_segment_length_reduction: 0.80
  angle_offset: 90

  instruction_mapping:
    _target_: lsystem.mapping.InstructionMapping.from_dict
    map: {
      'F': FORWARD,
      'G': FORWARD,
      '+': RIGHT,
      '-': LEFT,
      '[': SAVE,
      ']': LOAD,
    }

  starting_state:
    _target_: lsystem.renderer.RendererState
    x: 0
    y: 0
    angle: 0

App Configuration File

The app *.yaml configuration file contains parameters for setting up the GUI of the application.

window_size: [WIDTH, HEIGHT]
line_color: [R, G, B]
background_color: [R, G, B]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

LSystemRenderer-0.0.9.tar.gz (28.7 kB view hashes)

Uploaded Source

Built Distribution

LSystemRenderer-0.0.9-py3-none-any.whl (46.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page