Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allows inspecting the Draw State #895

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Conversation

sebosp
Copy link

@sebosp sebosp commented Nov 13, 2022

This is so that existing rendering libraries/binaries can re-use nannou/lyon heavy lifting and migrate to it in progression.

As an example, alacritty already has its rendering context, but the rendering of polygons and paths for decorations (i.e. background effects) could use nannou's logic.

While the vertices from certain shapes work without this PR (i.e. draw.ellipse()), when one attempts to use a draw.path(), this is behind several private layers: the Draw .state, the .intermediary_state and finally the .path_event_buffer where the vertices are located for bezier curves and such.

By exporting these immutable references of the state, other projects can start calling draw.<shape>()... and the project can have a function similar to nannou::draw::renderer::Renderer::fill() in which the draw commands are drained and primitives are rendered in the existing project rendering context.

Signed-off-by: Seb Ospina kraige@gmail.com

…se nannou/lyon heavy lifting

Signed-off-by: Seb Ospina <kraige@gmail.com>
@sebosp
Copy link
Author

sebosp commented Dec 21, 2022

This allows rendering nannou primitives for example in alacritty (or chartacritty on my fork):
nannou polar clock

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant