You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Use this template to suggest a new example for inclusion in the Processing Examples repository.
3
+
body:
4
+
- type: input
5
+
id: example_title
6
+
attributes:
7
+
label: Proposed Example Title
8
+
description: Provide a title for the proposed example.
9
+
validations:
10
+
required: true
11
+
- type: textarea
12
+
attributes:
13
+
label: Example Description
14
+
description: Describe the proposed example. Include details of what it would demonstrate and how it would be implemented.
15
+
validations:
16
+
required: true
17
+
- type: textarea
18
+
attributes:
19
+
label: Value and Necessity
20
+
description: Explain why this example is valuable and needed. Describe the specific concepts or techniques it will illustrate and why they are important for users to understand.
21
+
validations:
22
+
required: true
23
+
- type: textarea
24
+
attributes:
25
+
label: Initial Code
26
+
description: If possible, provide initial code for the proposed example.
27
+
value: |
28
+
/**
29
+
* Example Title
30
+
* by Your Name
31
+
*
32
+
* Briefly describe what this example demonstrates and any instructions on how to interact with it.
33
+
*/
34
+
35
+
void setup() {
36
+
size(640, 360);
37
+
// Your setup code here
38
+
}
39
+
40
+
void draw() {
41
+
// Your drawing code here
42
+
}
43
+
validations:
44
+
required: false
45
+
- type: textarea
46
+
attributes:
47
+
label: Additional context
48
+
description: Provide any other context, similar existing examples, or any additional information that could support your suggestion.
0 commit comments