Rendercanvas is a community effort, shaped by a group of contributors from around the world. And you can contribute too!
We coordinate our work using GitHub,
- The issues are meant to track problems and feature requests.
- The pull-requests (a.k.a. PR's) are used to contribute new code to the project.
Before creating a new issues, please first search the issue list to see if your problem is already known. If it is, you can then participate by letting us know you encountered the same problem, and maybe add specific details that can help us fix the problem.
If you're new to Github, see Github's documentation for creating an issue and creating a pull-request. And we are also here to help you!
If you run into a difficulty when using rendercanvas, we'd like to know, so that we can fix or document it. If you encounter what you think is a bug, please let us know by creating an issue! Likewise in case things are unclear, e.g. because the documentation is incomplete or outdated.
If you are trying to achieve something and you're not sure how to do this with rendercanvas, you can start a discussion. We can then give some tips, and others with similar goals can benefit too.
If you feel that something is missing, you can create an issue to request that feature. We especially appreciate if you're willing to contribute the new feature via a pull-request. It can be good to first open an issue (especially for large/complex features) to discuss the approach and design. This increases the chance of a successful pull-request.
We love it when rendercanvas is used in a derived project, blog posts, article, or scientific paper. We love it even more if rendercanvas is referenced to help increase the visibility of the project. Also feel free to reach out to let us know! See our Zenodo page for citation details: https://doi.org/10.5281/zenodo.18922945
If you want to add a backend, please first create an issue to discuss the idea. Also have a look at https://rendercanvas.readthedocs.io/stable/backendapi.html to see what a backend looks like.
If you just want to help move the project forward, we welcome you to:
- Check the issue list, to see if there are issues that you can help with, maybe by fixing a bug or contributing a new feature.
- Check the pull-requests, to see if you can help review it, or maybe test it out.
- Read the documentation, and see if it can be improved.
This policy was gratefully inspired by the AI policies of SciPy and scikit-image.
We are a small developer team, and we enjoy reviewing and discussing code written by other humans. We recognize that LLMs may be useful, but overall prefer for contributions to be hand-written.
You are responsible for all the code that you contribute, including the AI generated code. You must understand and be able to explain the submitted code as well as its relation with the surrounding code. It is not acceptable to submit a patch that you cannot understand and explain yourself.
You must disclose whether AI has been used to produce any code of your pull-request. If so, you must document which tool(s) have been used, how they were used, and specify what code or text is AI generated.
Contributors must own the copyright of any code submitted to rendercanvas. Code generated by AI may infringe on copyright and it is your responsibility to not infringe. We reserve the right to reject any pull requests where the copyright is in question.
When interacting with developers (in discussions, issues, pull-requests, etc.) do not use AI to speak for you, except for translation or grammar editing. Human-to-human communication is essential for an open source community to thrive.
The use of an AI agent that writes code and then submits a pull request autonomously is not permitted.
All backends are represented as modules in the library root. Core functionality is in rendercanvas.core.
Public utilities are in rendercanvas.utils. We try to avoid dependencies where possible, although we do allow
optional dependencies for specific backends.
The rendercanvas project uses ruff to format and lint the code:
# Reformat the code if necessary
ruff format
# Check for linting errors.
ruff checkThis project includes some JavaScript code. It is formatted and linted using
standardjs, which is similar to ruff in Python. CI runs a lint-job
that uses standardjs. To format and lint your code locally:
- Install npm if you don't have it already.
npm install --global standardstandard rendercanvas --fix(run this before committing changes to the JavaScript code)