https://github.com/gypsydangerous/processing-gui
In development set of classes for gui in processing
https://github.com/gypsydangerous/processing-gui
Last synced: 3 months ago
JSON representation
In development set of classes for gui in processing
- Host: GitHub
- URL: https://github.com/gypsydangerous/processing-gui
- Owner: GypsyDangerous
- Created: 2019-02-21T02:56:13.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-15T16:00:10.000Z (about 6 years ago)
- Last Synced: 2025-01-05T16:46:21.945Z (5 months ago)
- Language: Processing
- Size: 448 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Processing-GUI
In development set of classes for gui in processing# Current Classes
## Button

```
The button is constructed with a position, width, height, color, and text.
The button has a function called pressed that shows the button as a rectangle and returns true when the button is pressed.
The button has a subclass that has all the same feature but is a circle instead.
```
 unchecked
 checked
## check box
```
The check box is constructed with a position, size, color, and text.
The check box has a function that shows it as a square and inverts its color when its checked.
The check box has a function that checks and unchecks it.
The check box has a function that runs the last two at once.
The check box has a boolean variable "checked"
```
## slider

```
The slider is constructed with a start value, end value, beginning value, position, and increment size.
The slider has a second constructor that does the same as the first but has a default increment size of 1.
The slider has a function to show it as a line for the rail and cirlce for the handle.
The slider has a function that allows you slide it with the mouse.
The slider has run function that does the last two at once.
The slider has a functin that returns a value based on the position of the handle.
```