processing-ui

UI Library for Processing

License

License

Categories

Categories

Ant Build Tools
GroupId

GroupId

com.github.gianttreelp
ArtifactId

ArtifactId

gtlp-processing-ui
Last Version

Last Version

1.0.3.1
Release Date

Release Date

Type

Type

jar
Description

Description

processing-ui
UI Library for Processing
Project URL

Project URL

https://github.com/GiantTreeLP/processing-ui
Source Code Management

Source Code Management

https://github.com/GiantTreeLP/processing-ui/tree/master

Download gtlp-processing-ui

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.gianttreelp/gtlp-processing-ui/ -->
<dependency>
    <groupId>com.github.gianttreelp</groupId>
    <artifactId>gtlp-processing-ui</artifactId>
    <version>1.0.3.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.gianttreelp/gtlp-processing-ui/
implementation 'com.github.gianttreelp:gtlp-processing-ui:1.0.3.1'
// https://jarcasting.com/artifacts/com.github.gianttreelp/gtlp-processing-ui/
implementation ("com.github.gianttreelp:gtlp-processing-ui:1.0.3.1")
'com.github.gianttreelp:gtlp-processing-ui:jar:1.0.3.1'
<dependency org="com.github.gianttreelp" name="gtlp-processing-ui" rev="1.0.3.1">
  <artifact name="gtlp-processing-ui" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.gianttreelp', module='gtlp-processing-ui', version='1.0.3.1')
)
libraryDependencies += "com.github.gianttreelp" % "gtlp-processing-ui" % "1.0.3.1"
[com.github.gianttreelp/gtlp-processing-ui "1.0.3.1"]

Dependencies

compile (3)

Group / Artifact Type Version
org.processing : core jar 3.2.3
com.github.gianttreelp : gtlp-processing-utils jar 1.0.4.1
org.jetbrains.kotlin : kotlin-stdlib-jre8 jar 1.1.2-3

test (3)

Group / Artifact Type Version
org.jetbrains.kotlin : kotlin-test-junit jar 1.1.2-3
org.junit.jupiter : junit-jupiter-api jar 5.0.0-M4
junit : junit jar 4.12

Project Modules

There are no modules declared in this project.

processing-ui

A wrapper for Processing's PApplet to aid development with easy to use Views and UI elements.

Build Status Maven Central Dependencies Dependency Status GitHub release

It's very simple to use:

Kotlin:

Just extend PWindow and override settings():

class KotlinSample : PWindow() {
    override fun settings() {
        size(600, 400)
    }
}

Then create your main() method to launch your sketch:

fun main(args: Array<String>) {
    PApplet.main(KotlinSample().javaClass)
}

Java:

Do it just like with Kotlin:

Extend PWindow and override settings():

public class JavaSample extends PWindow {
    @Override
    public void settings() {
        size(600, 400);
    }

Create you main() method and you are ready to launch your sketch:

    public static void main(String[] args) {
        main(JavaSample.class);
    }
}

Versions

Version
1.0.3.1
1.0.3
1.0.2
1.0.1
1.0