Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/virtualplantlab/plantgeomturtle.jl
Generate geometry meshes from graphs using turtle algorithms
https://github.com/virtualplantlab/plantgeomturtle.jl
Last synced: about 2 months ago
JSON representation
Generate geometry meshes from graphs using turtle algorithms
- Host: GitHub
- URL: https://github.com/virtualplantlab/plantgeomturtle.jl
- Owner: VirtualPlantLab
- License: mit
- Created: 2023-06-16T12:58:13.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-05T12:37:22.000Z (2 months ago)
- Last Synced: 2024-11-05T13:48:02.846Z (2 months ago)
- Language: Julia
- Size: 300 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PlantGeomTurtle
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://virtualplantlab.com/stable/api/turtle/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://virtualplantlab.com/dev/api/turtle/)
[![CI](https://github.com/VirtualPlantLab/PlantGeomTurtle.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/VirtualPlantLab/PlantGeomTurtle.jl/actions/workflows/CI.yml)
[![Coverage](https://codecov.io/gh/VirtualPlantLab/PlantGeomTurtle.jl/branch/master/graph/badge.svg?token=LCZHPERHUN)](https://codecov.io/gh/VirtualPlantLab/PlantGeomTurtle.jl)
[![Aqua QA](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)
[![ColPrac](https://img.shields.io/badge/ColPrac-Contributor's%20Guide-blueviolet)](https://github.com/SciML/ColPrac)
[![SciML Code Style](https://img.shields.io/static/v1?label=code%20style&message=SciML&color=9558b2&labelColor=389826)](https://github.com/SciML/SciMLStyle)This package is a component of the VPL ecosystem. It implements algorithms for procedural
generation of plant geometry from graphs using turtle graphics. This package is a component
of the [Virtual Plant Lab](http://virtualplantlab.com/). Users should install instead the
interface package [VirtualPlantLab.jl](https://github.com/VirtualPlantLab/VirtualPlantLab.jl).# 1. Installation
You can install the latest stable version of PlantGeomTurtle.jl with the Julia package manager:
```julia
] add PlantGeomTurtle
```Or the development version directly from here:
```julia
import Pkg
Pkg.add(url="https://github.com/VirtualPlantLab/PlantGeomTurtle.jl", rev = "master")
```