├── .classpath ├── .github └── FUNDING.yml ├── .gitignore ├── .project ├── README.md ├── data └── README ├── examples ├── Hello │ └── Hello.pde └── README ├── lib └── README ├── license.txt ├── resources ├── README.md ├── build.properties ├── build.xml ├── code │ ├── ExampleTaglet.class │ ├── ExampleTaglet.java │ └── ant-contrib-1.0b3.jar ├── library.properties └── stylesheet.css ├── src └── template │ └── library │ └── HelloLibrary.java └── web ├── index.html └── stylesheet.css /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/.classpath -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | tmp 3 | distribution 4 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/.project -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/README.md -------------------------------------------------------------------------------- /data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/data/README -------------------------------------------------------------------------------- /examples/Hello/Hello.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/examples/Hello/Hello.pde -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- 1 | add examples for your Library here. -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/lib/README -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/license.txt -------------------------------------------------------------------------------- /resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/resources/README.md -------------------------------------------------------------------------------- /resources/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/resources/build.properties -------------------------------------------------------------------------------- /resources/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/resources/build.xml -------------------------------------------------------------------------------- /resources/code/ExampleTaglet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/resources/code/ExampleTaglet.class -------------------------------------------------------------------------------- /resources/code/ExampleTaglet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/resources/code/ExampleTaglet.java -------------------------------------------------------------------------------- /resources/code/ant-contrib-1.0b3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/resources/code/ant-contrib-1.0b3.jar -------------------------------------------------------------------------------- /resources/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/resources/library.properties -------------------------------------------------------------------------------- /resources/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/resources/stylesheet.css -------------------------------------------------------------------------------- /src/template/library/HelloLibrary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/src/template/library/HelloLibrary.java -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/web/index.html -------------------------------------------------------------------------------- /web/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/processing/processing-library-template-ant/HEAD/web/stylesheet.css --------------------------------------------------------------------------------