We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d02a188 commit 5b34449Copy full SHA for 5b34449
crates/processing_pyo3/src/lib.rs
@@ -1,3 +1,13 @@
1
+//! # processing_pyo3
2
+//!
3
+//! A Python module that exposes libprocessing using pyo3.
4
+
5
+//! In processing4 Java, the sketch runs implicitly inside a class that extends PApplet and
6
+//! executes main. This means that all PAplet methods can be called directly without an explicit
7
+//! receiver.
8
9
+//! To allow Python users to create a similar experience, we provide module-level
10
+//! functions that forward to a singleton Graphics object behind the scenes.
11
mod glfw;
12
mod graphics;
13
0 commit comments