-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontribs.txt
3081 lines (2878 loc) · 109 KB
/
contribs.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
library
name=proscene
authors=[Jean Pierre Charalambos](http://otrolado.info)
url=http://otrolado.info
categories=3D,Animation,Geometry,GUI,I/O,Utilities
sentence=This project is deprecated and will soon no longer be available. Download the nub library instead.
paragraph=Main features include: 1. Default interactivity through the mouse and keyboard that simply does what you expect; 2. Generic support for Human Interface Devices; 3. Arcball, walkthrough and third person camera modes; 4. Hierarchical coordinate systems (frames), with functions to convert between them; 5. Coordinate systems can easily be moved with the mouse. 6. Keyframes; 7. Object picking; 8. Keyboard shortcuts and camera profiles customization; 8. Animation framework; 9. Screen drawing; and, 10. Off-screen rendering mode support.
version=33
prettyVersion=3.0.1
minRevision=256
maxRevision=0
id=001
type=library
download=https://github.com/remixlab/proscene/releases/download/latest/proscene.zip
library
name=Collada Loader for SketchUp and Blender
authors=[Markus Zimmermann](http://www.die-seite.ch/)
url=http://www.die-seite.ch/
categories=3D
sentence=Importer for kmz and dae files created by 3D softwares SketchUp 8 or Blender 2.75a
paragraph=The library is tested with versions of Sketchup 8 and Blender 2.75a. It can run on default renderer (2D) or OpenGL (P2D,P3D). There exist also examples, a user documentation and technical specification.
version=21
prettyVersion=3.1
minRevision=242
id=006
type=library
maxRevision=0
download=http://www.die-seite.ch/colladaloader/colladaLoader.zip
library
name=PeasyCam
authors=[Jonathan Feinberg](http://mrfeinberg.com/)
url=http://mrfeinberg.com/peasycam/
categories=3D
sentence=A mouse driven camera-control library for 3D sketches.
version=302
prettyVersion=302
minRevision=227
maxRevision=0
id=017
type=library
download=http://mrfeinberg.com/peasycam/peasycam.zip
library
name=Picking
authors=[Nicolas Clavaud](http://n.clavaud.free.fr/)
url=http://n.clavaud.free.fr/processing/library/picking/
categories=3D
sentence=Pick an object in a 3D scene easily.
paragraph=
version=8
prettyVersion=0.3.1
minRevision=0
maxRevision=0
id=032
type=library
download=http://n.clavaud.free.fr/processing/library/picking/download/Picking.zip
library
name=OCD: Obsessive Camera Direction
authors=[Kristian Damkjer](http://www.gdsstudios.com/)
url=http://www.gdsstudios.com/processing/libraries/ocd/
categories=3D
sentence=The Obsessive Camera Direction (OCD) library allows intuitive control and creation of Processing viewport Cameras.
paragraph=With OCD, it is easy set up several cameras and switch between them. It is also easy to manipulate individual cameras using standard camera movement commands.
version=5
prettyVersion=1.5
id=036
type=library
minRevision=0
maxRevision=0
download=http://www.gdsstudios.com/processing/libraries/ocd/download/ocd.zip
library
name=Patchy
authors=[Jonathan Feinberg](http://mrfeinberg.com/)
url=http://mrfeinberg.com/patchy/
categories=3D
sentence=Patchy provides an easy-to-use bicubic patch for 3D Processing sketches.
version=200
id=037
type=library
minRevision=0
maxRevision=0
download=http://mrfeinberg.com/patchy/patchy.zip
library
name=Shapes 3D
authors=[Peter Lager](http://www.lagers.org.uk)
url=http://www.lagers.org.uk/s3d4p/index.html
categories=3D
sentence=3D Shape creation and display made easy.
paragraph=Choose from a wide range of shapes including the sphere, box, cylinder, torus, helix, bezier shapes and various tubes. All of the shapes can be shown in wireframe, colour or textured with your own images. Many of library examples need the [PeasyCam](http://http://www.processing.org/reference/libraries/
version=12
prettyVersion=3.0
minRevision=0246
maxRevision=0
id=079
type=library
download=http://www.lagers.org.uk/processing3/shapes3d/Shapes3D.zip
library
name=SimpleOpenNI
authors=[Max Rheiner & Antonio Vega](http://code.google.com/p/simple-openni/)
url=https://github.com/totovr/SimpleOpenNI
categories=3D
sentence=A simple wrapper for OpenNI (Kinect-Library).
paragraph=
version=200
prettyVersion=2.0.0
minRevision=266
maxRevision=0
id=120
type=library
download=https://fox-gieg.com/patches/processing/libraries/SimpleOpenNI/SimpleOpenNI.zip
library
name=iGeo
authors=[Satoru Sugihara](http://atlv.org/)
url=http://igeo.jp/
categories=3D
sentence=3D geometry library with packages of NURBS geometry, polygon mesh geometry, vector math, 3D display and navigation, 3D data file I/O and agent-based 3D geometry modeling.
paragraph=
version=901
prettyVersion=0.9.0.1
id=123
type=library
minRevision=0
maxRevision=228
download=http://igeo.jp/igeo.zip
library
name=planetarium
authors=[Andres Colubri](http://andrescolubri.net/)
url=https://github.com/codeanticode/planetarium
categories=3D
sentence=This library provides a renderer to project 3D scenes on a full dome.
paragraph=It works by rendering the scene 5 times (one from each direction: top, right, etc) and then assembling the output of these renderings into a single environmental map that covers the entire dome.
version=5
prettyVersion=0.5
minRevision=0246
maxRevision=0
id=130
type=library
download=https://github.com/codeanticode/planetarium/releases/download/latest/planetarium.zip
library
name=Camera 3D
authors=[Jim Schmitz](https://ixora.io)
url=https://ixora.io/projects/camera-3D/
categories=3D
sentence=Alter P3D Rendering to produce Stereoscopic Animations, 360 Video and other 3D effects.
paragraph=Library will execute the draw method multiple times with different camera settings and combine them together to form one composite frame.
version=7
prettyVersion=1.2.4
minRevision=233
maxRevision=0
id=174
type=library
download=https://ixora.io/downloads/camera3D/Camera3D.zip
library
name=Culebra Behavior Library for Processing
authors=[Luis Quinones](http://complicitMatter.com)
url=http://www.complicitmatter.com/culebra-java/
categories=3D,Geometry,Simulation
sentence=A collection of objects and behaviors for creating dynamic multi agent interactions.
paragraph=2D|3D Multi Object Behavior library focused on hybrid system interactions with custom Visualization, Data, and performance features.
version=1
prettyVersion=1.0.0
minRevision=250
maxRevision=0
id=195
type=library
download=http://culebra.technology/culebra.zip
library
name=QueasyCam
authors=[Josh Castle](https://twitter.com/jrc03c)
url=https://github.com/jrc03c/queasycam
categories=3D
sentence=A super-simple FPS camera for Processing.
paragraph=
version=4
prettyVersion=1.4
minRevision=0
maxRevision=0
id=196
type=library
download=https://github.com/jrc03c/queasycam/releases/download/latest/queasycam.zip
library
name=extruder
categories=3D
authors=[Max Farrell](https://arcane.info/)
url=http://maxlfarrell.gitlab.io/extruder
sentence=A 3d library to create extrusions
paragraph=A 3d library to create 3d shapes from 2d shapes in the simplest, library free way possible
version=3
prettyVersion=1.02
lastUpdated=0
minRevision=0
maxRevision=0
id=215
type=library
download=http://maxlfarrell.gitlab.io/extruder/extruder.zip
library
name=Everything Will Be IK
authors=[Eron Gjoni](https://github.com/EGjoni/)
url=https://github.com/EGjoni/Everything-Will-Be-IK-Processing
categories=3D,Animation,Simulation
sentence=A robust Inverse Kinematics Library for Processing.
paragraph=Features: Highly Stable, Orientation AND position based targets (6-DOF), Multiple end-effector support, Intermediary effector support, Dampening (stiffness control), Highly versatile 3-DOF constraints with arbitrarily shaped orientation regions.
version=7
prettyVersion=3.0.4
minRevision=0
maxRevision=0
id=244
type=library
download=http://giftedapprentice.com/ewbIK/ewbIK.zip
library
name=nub
authors=[Jean Pierre Charalambos](https://visualcomputing.github.io/)
url=https://github.com/VisualComputing/nub
categories=3D,Animation,Utilities
sentence=Library that eases the creation of interactive scenes.
paragraph=Main features include: 1. Default interactivity through the mouse and keyboard that simply does what you expect; 2. Generic support for Human Interface Devices; 3. Arcball, walkthrough and third person camera modes; 4. Hierarchical coordinate systems (nub), with functions to convert between them; 5. Coordinate systems can easily be moved with the mouse. 6. Keyframes; 7. Object picking; 8. Keyboard shortcuts and camera profiles customization; 8. Animation framework; 9. Screen drawing; and, 10. Off-screen rendering mode support.
version=14
prettyVersion=1.1.1
minRevision=1292
maxRevision=0
id=245
type=library
download=https://github.com/VisualComputing/nub/releases/download/latest/nub.zip
library
name=Joon's Renderer
categories=3D
authors=[Joon Hyub Lee](https://sketch.kaist.ac.kr/people/joonhyublee)
url=https://github.com/joonhyublee/joons-renderer
sentence=Sunflow raytracing for Processing.
paragraph=
version=1
prettyVersion=1.0.0
lastUpdated=0
minRevision=266
maxRevision=0
id=283
type=library
download=https://fox-gieg.com/patches/processing/libraries/joons/joons.zip
library
name=Ani
authors=[Benedikt Gross](http://benedikt-gross.de/)
url=http://benedikt-gross.de/libraries/Ani/
categories=Animation
sentence=A lightweight library for creating animations and transitions.
paragraph=
version=8
prettyVersion=2.7
id=003
type=library
minRevision=0
maxRevision=0
download=https://dev.benedikt-gross.de/libraries/Ani/Ani-latest.zip
library
name=Sprites
authors=[Peter Lager](http://www.lagers.org.uk)
url=http://www.lagers.org.uk/s4p
categories=Animation
sentence=Sprite control and animation for games and other graphic applications.
paragraph=Provides complete control over sprite image animation, sprite movement and collision detection. Examples can be seen [here](http://www.lagers.org.uk/s4p/applets/s4p_showcase)
version=10
prettyVersion=2.1.1
minRevision=0227
maxRevision=0
id=062
type=library
download=http://www.lagers.org.uk/processing/sprites/Sprites.zip
library
name=XYscope
authors=[Ted Davis](https://www.teddavis.org)
url=https://teddavis.org/xyscope
categories=Animation,Hardware,Sound
sentence=XYScope is a library for Processing to render graphics on a vector display (oscilloscope, laser) by converting them to audio.
paragraph=This includes most primitive shapes (point, line, rect, ellipse, vertex, box, sphere, torus...) by converting those points to waveforms (oscillators with custom wavetables) and generating audio in real time using the Minim library. Vector graphics shine on a vector display and now you can view your generative works like never before! Tested on MacOS 10.9+ / Windows / Linux (RPi!).
version=5
prettyVersion=3.0.0
minRevision=0
maxRevision=0
id=219
type=library
download=https://teddavis.org/xyscope/download/XYscope.zip
library
name=Green
authors=[Zacchary Dempsey-Plante](https://ztdp.ca/)
url=https://ztdp.ca/projects/school/Green
categories=Animation,Other
sentence=Easy, simple 2D game creation within Processing.
paragraph=Developed with a focus on ease-of-use and learning. Originally made to aid in teaching high school students, emulating and expanding upon the functionality of the [Greenfoot](https://www.greenfoot.org/) project.
version=9
prettyVersion=1.1.3
minRevision=0
maxRevision=0
id=253
type=library
download=https://ztdp.ca/projects/school/Green/Green.zip
library
name=Latk for Processing
categories=Animation
authors=[Nick Fox-Gieg](https://fox-gieg.com)
url=https://github.com/LightningArtist/latkProcessing
sentence=Read Latk, Tilt Brush, and Quill files in Processing.
paragraph=
version=1
prettyVersion=1.0.0
lastUpdated=0
minRevision=266
maxRevision=0
id=272
type=library
download=https://fox-gieg.com/patches/processing/libraries/latkProcessing/latkProcessing.zip
library
name=EasyEase
authors=[Fred Egidi](https://github.com/fredegd)
url=https://fredegd.github.io/EasyEase
categories=Animation
sentence=Easing Function and non linear distribution utilities for Processing
paragraph=EasyEase convert and bend linear motion into the most common easing curves
version=1
prettyVersion=1.0.0
minRevision=0
maxRevision=0
id=291
type=library
download=https://github.com/fredegd/EasyEase/releases/download/latest/EasyEase.zip
library
name=gicentreUtils
authors=[Jo Wood](http://gicentre.org/) and [Aidan Slingsby](http://gicentre.org/)
url=http://www.gicentre.org/utils/
categories=Compilation
sentence=Assists creation of data visualization sketches.
paragraph=Includes color utilities, statistical graphics, morphing classes, spatial utilities and map projections, force-directed layouts and text input/output. Together these make the task of creating data visualization sketches much faster by providing code for commonly repeated tasks such as zooming in and out of a sketch, setting up color tables etc. For documentation and examples, see the [gicentreUtils pages](http://www.gicentre.org/utils/).
minRevision=228
version=14
prettyVersion=3.4.0
id=004
type=library
maxRevision=0
download=http://staff.city.ac.uk/~jwo/giCentre/utils/gicentreUtils.zip
library
name=GenerativeDesign
authors=[Hartmut Bohnacker, Benedikt Gross](http://www.generative-gestaltung.de/)
url=http://www.generative-gestaltung.de/
categories=Compilation
sentence=A collection of various functions belonging to the book GENERATIVE DESIGN (english), GENERATIVE GESTALTUNG (german) and DESIGN GENERATIF (french).
paragraph=It supplies classes and functions for 3d-surfaces, simple physics (nodes, springs, attractors), graphic tablets, ASE-export or asynchronous loading of xml, html and images.
version=7
prettyVersion=1.0.6
minRevision=239
maxRevision=0
id=056
type=library
download=https://github.com/generative-design/GenerativeDesignLibrary3/releases/download/latest/generativedesign.zip
library
name=SFTP
authors=[Daniel Shiffman](http://www.shiffman.net)
url=https://github.com/shiffman/SFTP-Processing
categories=Data
sentence=SFTP direct from Processing (using JSch)
paragraph=Includes ls and get, needs to be updated with put
version=1
prettyVersion=0.1a
id=011
type=library
minRevision=0
maxRevision=0
download=https://github.com/shiffman/SFTP-Processing/releases/download/latest/sftp.zip
library
name=Carnivore
authors=[RSG](http://r-s-g.org)
url=http://r-s-g.org/carnivore
categories=Data,Simulation
sentence=Surveillance tool for data networks.
paragraph=
version=9
prettyVersion=9
id=040
type=library
minRevision=0
maxRevision=0
download=http://r-s-g.org/carnivore/download/carnivore_p5lib.zip
library
name=MapThing
authors=[Jon Reades](http://www.reades.com/)
url=http://www.reades.com/MapThing
categories=Data
sentence=A collection of classes for reading and displaying Shape files (a.k.a. ESRI shapefiles), CSV, and GPX data in a map-based sketch.
paragraph=There are four main classes with which you should be familiar: 1) BoundingBox defines the sketch's geographic 'envelope' by mapping a shapefile's geographic coordinates on to the viewable space of the sketch; 2) Lines is used to read and display single-part and multi-part line data; 3) Points is used to read and display point data; and 4) Polygons is used to read and display single and multi-part polygon data (this only works with shapefiles for now). GPX display needs work.
version=5
prettyVersion=1.4
id=044
type=library
minRevision=0
maxRevision=0
download=http://www.reades.com/MapThing/MapThing.zip
library
name=oscP5
authors=[Andreas Schlegel](http://www.sojamo.de/)
url=http://www.sojamo.de/libraries/oscp5
categories=Data
sentence=An Open Sound Control (OSC) implementation.
paragraph=The UDP, TCP, Multicast protocols are supported and can be used for client/server communication independently from OSC as well.
version=99
prettyVersion=0.9.9
id=072
type=library
minRevision=0
maxRevision=0
download=http://sojamo.de/libraries/oscp5/oscP5.zip
library
name=UDP
authors=[Stephane Cousot](http://ubaa.net/)
url=http://ubaa.net/shared/processing/udp/
categories=Data
sentence=Enables simple UDP communication, as well as multicast support.
paragraph=
version=1
prettyVersion=0.1
minRevision=0
maxRevision=0
id=073
type=library
download=http://ubaa.net/shared/processing/udp/udp.zip
library
name=OOCSI for Processing
authors=[Mathias Funk](http://www.mathias-funk.com/)
url=http://iddi.github.io/oocsi-processing/
categories=Data,I/O,Utilities
sentence=Processing client library for the OOCSI design middleware and Data Foundry access.
paragraph=This library provides easy ways to connect a Processing sketch to an OOCSI server and communicate through this connection with other clients on many different platforms, such as Processing, Java, Android, Python, OSC, and HTML/JavaScript and Node.js via web sockets. Processing sketches can not only send and receive messages between specific clients, but also broadcast and subscribe to channels, which makes coordinating a large number of sketches or devices surprisingly simple and robust.
version=143
prettyVersion=1.4.3
minRevision=0
maxRevision=0
id=084
type=library
download=http://iddi.github.io/oocsi-processing/oocsi.zip
library
name=SoundCloud
authors=[Darius Morawiec](http://nok.onl)
url=https://github.com/nok/soundcloud-processing
categories=Data
sentence=Unofficial Java library, which simplifies the use of the official [SoundCloud Java API wrapper](https://github.com/soundcloud/java-api-wrapper).
paragraph=
version=9
prettyVersion=0.1.6
minRevision=215
maxRevision=228
id=089
type=library
download=https://raw.githubusercontent.com/nok/soundcloud-processing/master/download/SoundCloud.zip
library
name=ShortMessage
authors=[Hamzeen. H.](http://www.hamzeen.com)
url=http://hamzeen.github.io/smsP5
categories=Data
sentence=A library to send/receive short messages (SMS) from Processing.
paragraph=This library wraps around SMSLib to provide a simple API for Processing users, examples included.
version=1
prettyVersion=1.0.2
id=103
type=library
minRevision=0
maxRevision=0
download=http://hamzeen.github.io/ShortMessage/ShortMessage.zip
library
name=XlsReader
authors=[Florian Jenett](http://www.bezier.de/)
url=https://github.com/fjenett/xlsreader-library-processing
categories=Data
sentence=A library to read from XLS (Excel) files
paragraph=XlsReader allows to read from .xls files as if they were a database
version=5
prettyVersion=0.1.2
minRevision=218
maxRevision=228
id=110
type=library
download=https://raw.github.com/fjenett/xlsreader-library-processing/latest/release/XlsReader.zip
library
name=BezierSQLib
authors=[Florian Jenett](http://www.bezier.de/)
url=https://github.com/fjenett/sql-library-processing
categories=Data
sentence=A library to facilitate communication with SQL-based databases
paragraph=SQLibrary is an interface to MySQL, SQLite and PostgreSQL databases
version=1164
prettyVersion=0.3.1
id=111
type=library
minRevision=0
maxRevision=0
download=https://github.com/benfry/sql-library-processing/raw/master/release/BezierSQLib.zip
library
name=Signal Filter
authors=[Raphael de Courville](https://vimeo.com/sableraf/)
url=https://github.com/SableRaf/signalfilter
categories=Data
sentence=Filter noisy and jittery signals.
paragraph=OneEuroFilter for Processing based on the Java implementation by StŽphane Conversy.
version=1
prettyVersion=1.0.0
id=115
type=library
minRevision=0
maxRevision=0
download=http://s176381904.onlinehome.fr/processing/SignalFilter/download/signalFilter.zip
library
name=Redis
authors=[Darius Morawiec](http://nok.onl)
url=https://github.com/nok/redis-processing
categories=Data
sentence=Wrapper to use [Redis](http://redis.io/) in [Processing](http://processing.org/). It's based on [Jedis](https://github.com/xetorthio/jedis), a small Java client by [Jonathan Leibiusky](https://github.com/xetorthio).
paragraph=
version=6
prettyVersion=1.1.3
minRevision=197
maxRevision=0
id=133
type=library
download=https://raw.githubusercontent.com/nok/redis-processing/master/download/Redis.zip
library
name=Temboo
authors=[Temboo](http://temboo.com/)
url=http://www.temboo.com/processing
categories=Data
sentence=Generate code to connect to 100+ APIs, code utilities, and databases in Processing.
paragraph=Explore [temboo.com](http://temboo.com/) and auto-generate Processing sketches for your favorite web services and resources.
version=2024000
prettyVersion=2.24.0
id=135
type=library
minRevision=0
maxRevision=0
download=https://temboo.com/files/temboo-processing.zip
library
name=HTTP Requests for Processing
authors=[Rune Madsen](http://www.runemadsen.com), [Daniel Shiffman](http://shiffman.net)
url=https://github.com/runemadsen/HTTP-Requests-for-Processing
categories=Data
sentence=HTTP Requests for Processing is a small library that takes the pain out of doing HTTP requests in Processing.
paragraph=
version=5
prettyVersion=0.1.5
minRevision=218
maxRevision=0
id=137
type=library
download=https://github.com/runemadsen/HTTP-Requests-for-Processing/releases/download/latest/httprequests_processing.zip
library
name=Unfolding Maps
authors=[Till Nagel](http://tillnagel.com/) and others
url=http://www.unfoldingmaps.org/
categories=Data
sentence=Create interactive maps and geovisualizations.
paragraph=
version=96
prettyVersion=0.9.6
id=144
type=library
minRevision=0
maxRevision=228
download=http://unfoldingmaps.org/Unfolding.zip
library
name=Websockets
authors=Lasse Steenbock Vestergaard
url=https://github.com/alexandrainst/processing_websockets
categories=Data,I/O
sentence=Create websocket servers and clients, which makes it possible to communicate with the outside world including web sites.
paragraph=With this library it's possible to have true two way real-time connections with other Processing sketches, web sites, Internet of Things devises etc. For a concrete use case please take a look at the examples folder.
version=1
prettyVersion=0.1b
minRevision=0
maxRevision=0
id=175
type=library
download=https://github.com/alexandrainst/processing_websockets/releases/download/latest/webSockets.zip
library
name=AndroidCapture for Processing
authors=[Jianbin Qi](https://github.com/onlylemi/)
url=https://github.com/onlylemi/processing-android-capture
categories=Data
sentence=This lib tries to transfer data(Android Camera & Android Sensor) between Processing and Android.
paragraph=
version=2
prettyVersion=2.0
id=183
type=library
minRevision=0
maxRevision=0
download=https://github.com/onlylemi/processing-android-capture/releases/download/latest/AndroidCaptureForProcessing.zip
library
name=HiVis
authors=[Philip Poronnik, Oliver Bown, Oliver Coleman, Phillip Gough, Narayan Sankaran](https://github.com/OliverColeman/)
url=https://github.com/OliverColeman/hivis
categories=Data,Math
sentence=Import data and manipulate it with statistical and other functions. Designed to be simple to use for novice programmers while being highly flexible and extensible. Includes many examples and tutorials. Check out olivercoleman.github.io/hivis for a 30 second crash course.
paragraph=Typically raw data is loaded from a data source, for example a spreadsheet, and then <strong>views</strong> of that data are derived from it via transformation operations or functions. Some example views are mathematical and statistical operations, filtering and rearranging elements of the data, sorting and grouping data, or applying a function to every element of the data. Custom views can be created too. If the data source changes, the derived views are updated in real-time.
version=4
prettyVersion=2.0.0
minRevision=0
maxRevision=0
id=203
type=library
download=https://github.com/OliverColeman/hivis/releases/download/latest/HiVis.zip
library
name=AP-Sync
authors=[Nigel Tiany](http://nigeltiany.com)
url=http://ap-sync.github.io
categories=Data,I/O
sentence=AP-Sync it the easy way to sync data to processing from your arduino or any microcontroller to processing and back.
paragraph=Its simple api makes syncing data a breeze.
version=1.0.0
prettyVersion=peace
minRevision=100
maxRevision=0
id=206
type=library
download=https://ap-sync.github.io/libs/AP_sync_processing/APsync.zip
library
name=Simple Tweet
authors=[Gottfried Haider](http://gottfriedhaider.com/)
url=https://github.com/gohai/processing-simpletweet
categories=Data
sentence=Post images from Processing to Twitter
paragraph=Also shows other uses of the Twitter API
version=1
prettyVersion=1
minRevision=0
maxRevision=0
id=208
type=library
download=https://github.com/gohai/processing-simpletweet/releases/download/latest/processing-simpletweet.zip
library
name=WootingKeyboard
authors=[Shinhoo Park @ KAIST Interactive Media Lab](http://kiml.org/WootingKeyboard)
url=http://kiml.org/WootingKeyboard
categories=Data,I/O,Utilities
sentence=This library can be used to analyze the raw data of the [Wooting keyboard](https://www.wooting.nl/).
paragraph=The library will trigger onReadEvents when receive raw data from [Wooting keyboard](https://www.wooting.nl/). This data can be parsed into data of type String or HashMap through parseLog and parseData functions.
version=4
prettyVersion=1.0.3
minRevision=0
maxRevision=0
id=229
type=library
download=https://github.com/Shinhoo/Wooting-Keyboard-Library/releases/download/lastest/WootingKeyboard.zip
library
name=ArtNet for Java and Processing
categories=Data
authors=[Florian Bruggisser](https://bildspur.ch)
url=https://github.com/cansik/artnet4j
sentence=Framework for sending and receiving DMX data over the ArtNet protocol.
paragraph=Send and receive DMX data over the ArtNet protocol.
version=062
prettyVersion=v0.6.2
minRevision=0
maxRevision=0
id=230
type=library
download=https://github.com/cansik/artnet4j/releases/download/latest/artnet4j.zip
library
name=Squarify
authors=[Agathe Lenclen](https://github.com/agatheblues), [Uri Laserson](https://github.com/laserson), [Bruls, Huizing, van Wijk, "Squarified Treemaps"](https://doi.org/10.1007/978-3-7091-6783-0_4)
url=https://github.com/agatheblues/squarify
categories=Data,Geometry
sentence=A squarify treemap layout generator.
paragraph=Squarify provides you with the coordinates of rectangles, as output by a Squarify Treemap Algorithm, for a single layer of data.
version=1
prettyVersion=1.0.0
minRevision=0
maxRevision=0
id=241
type=library
download=http://agathelenclen.fr/downloads/Squarify.zip
library
name=RunwayML Processing Library
authors=[George Profenza](http://sensori.al)
url=https://github.com/runwayml/processing-library
categories=Data,Utilities
sentence=Easily send and receive data between RunwayML and your sketches.
paragraph=Please ensure RunwayML is running a model first. When using RunwayML on a different computer on the same network double check the IP address and port are correct and that any firewall grant communication between coomputers.
version=1
prettyVersion=1.0.1
minRevision=0
maxRevision=0
id=248
type=library
download=https://github.com/runwayml/processing-library/releases/download/latest/RunwayML.zip
library
name=Deep Vision
categories=Data
authors=[Florian Bruggisser](https://broox.ch)
url=https://github.com/cansik/deep-vision-processing
sentence=Deep computer-vision algorithms for Processing
paragraph=Run deep neural networks on images in Processing.
version=9000
prettyVersion=0.9.0
minRevision=0
maxRevision=0
id=267
type=library
download=https://github.com/cansik/deep-vision-processing/releases/download/contribution/deepvision.zip
library
name=(Weka4P) Weka Machine Learning for Processing
authors=[Rong-Hao Liang]([email protected]), [Wesley Hartogs](https://wesleyhartogs.nl), [Janet Huang]([email protected])
url=https://howieliang.github.io/Weka4P/
categories=Data
sentence=Implementation of the Open Source Weka Machine Learning Java library for Processing 3.
paragraph=Train and load models to bring Machine Learning (for example: classification and regression) to your Processing projects.
version=2
prettyVersion=0.1.0
minRevision=0
maxRevision=0
id=270
type=library
download=https://howieliang.github.io/Weka4P/download/Weka4P.zip
library
name=SerialRecord
authors=[Oliver Steele]([email protected])
url=https://osteele.github.io/Processing_SerialRecord/
categories=Data,I/O
sentence=Send and receive multiple values over the serial port, with error reporting for bad input and for common cases such as mismatched value counts, and with the ability to display sent and received data to the Processing console and canvas. It includes a utility function to find the first available serial port that follows the Arduino naming scheme.
paragraph=This library intended for novice programmers: it is designed to be easy to use, to detect when it is used incorrectly, and to detect and report when it receives invalid data. It also has an option to display the data sent to the and received from the serial port on the canvas.
version=10
prettyVersion=0.4.1
minRevision=0264
maxRevision=0
id=278
type=library
download=http://assets.osteele.com.s3.amazonaws.com/processing/SerialRecord.zip
library
name=Creative Machine
categories=Data
authors=[Jeongin Lee](https://github.com/jjeongin)
url=https://jjeongin.github.io/creative-machine
sentence=A Machine Learning library for Processing.
paragraph=Run different machine learning models in Processing.
version=1
prettyVersion=1.0.0
minRevision=0
maxRevision=0
id=284
type=library
download=https://github.com/jjeongin/creative-machine/releases/download/latest/creative_machine.zip
library
name=Geomerative
authors=[Ricard Marxer](http://www.ricardmarxer.com/)
url=http://www.ricardmarxer.com/geomerative
categories=Geometry,Typography
sentence=Extends 2D geometry operations to facilitate generative geometry. Includes a TrueType font interpreter.
paragraph=This library exposes the shapes (such as vector drawings or typographies) in a more approchable way. Geomerative makes it easy to access the paths, the handles and the points, making it easy to develop generative typography and geometry pieces in Processing.
version=43
prettyVersion=
id=038
type=library
minRevision=0
maxRevision=0
download=http://www.ricardmarxer.com/geomerative/geomerative.zip
library
name=Computational Geometry
authors=[Mark Collins & Toru Hasegawa](http://thecloudlab.org)
url=http://thecloudlab.org/processing/library.html
categories=Geometry
sentence=A simple, lightweight library for generating meshes such as isometric surfaces, boundary hulls and skeletons.
paragraph=Meshes are generated by specifying points and edges that inform the generation of the target output. In isometric surfacing, the library supports direct manipulation of the underlying grid data as well as simple meta-ball modeling.
version=3
prettyVersion=3.0
minRevision=0
maxRevision=0
id=106
type=library
download=http://www.thecloudlab.org/processing/download/ComputationalGeometry.zip
library
name=OCT
authors=[Thomas Wegener](http://www.thomaswegener.ch)
url=https://github.com/thwegene/OCT
categories=Geometry
sentence=A Processing library to create, modify and display Octree structures.
paragraph=
version=2
prettyVersion=0.1.1
minRevision=0
maxRevision=0
id=204
type=library
download=https://github.com/thwegene/OCT/releases/download/latest/OCT.zip
library
name=Dashed Lines
authors=[Jose Luis Garcia del Castillo](http://www.garciadelcastillo.es)
url=https://github.com/garciadelcastillo/-dashed-lines-for-processing-
categories=Geometry
sentence=Draw shapes with dashed lines!
paragraph=This library allows you draw geometry with dashed strokes, using the same set of basic geometry methods as in Processing.
version=3
prettyVersion=0.0.3
minRevision=0
maxRevision=0
id=214
type=library
download=http://www.garciadelcastillo.es/dashedlines/dashedlines.zip
library
name=handy
categories=Geometry,GUI
authors=[Jo Wood](http://gicentre.net/) and [Aidan Slingsby](http://gicentre.net/)
url=https://www.gicentre.net/software/
sentence=Hand-drawn sketchy rendering in Processing.
paragraph=The Handy library allows you to produce graphics with a hand-drawn appearance in Processing sketches. This can be customised to produce a variety of styles including pencil, watercolour and ink and marker pen appearance.
version=2
prettyVersion=2.0.0
lastUpdated=0
minRevision=228
maxRevision=0
id=237
type=library
download=http://gicentre.org/handy/handy.zip
library
name=Nurbs
authors=[Arnoud van der Leer](https://github.com/arnoudvanderleer)
url=https://arnoudvanderleer.github.io/processing-nurbs/
categories=Geometry
sentence=An implementation of Non-uniform Rational B-Splines for Processing
version=1
prettyVersion=1.0.0
minRevision=0
maxRevision=0
id=277
type=library
download=https://arnoudvanderleer.github.io/processing-nurbs/download/Nurbs.zip
library
name=G4P
authors=[Peter Lager](http://www.lagers.org.uk)
url=http://www.lagers.org.uk/g4p
categories=GUI
sentence=Provides a set of 2D GUI controls and multiple window support.
paragraph=Controls include buttons, sliders, knobs, labels, textfields, timers, combo boxes, option buttons etc. and multiple windows. [G4P GUI builder](http://www.lagers.org.uk/g4ptool/index.html) is a companion tool that enables the rapid (visual) development of user interfaces with this library.
version=50
prettyVersion=4.3.11
minRevision=0245
maxRevision=0
id=046
type=library
download=http://www.lagers.org.uk/processing3/g4p/G4P.zip
library
name=Guido
authors=[Florian Jenett](http://www.bezier.de/)
url=https://github.com/fjenett/Guido
categories=GUI
sentence=A simple cross mode GUI library
paragraph=Guido is a small GUI library that is compatible with both Java (standard) and JavaScript modes.
version=143
prettyVersion=0.0.4
id=054
type=library
minRevision=0
maxRevision=0
download=https://raw.github.com/fjenett/Guido/latest/releases/Guido.zip
library
name=ControlP5
authors=[Andreas Schlegel](http://www.sojamo.de/)
url=http://www.sojamo.de/libraries/controlp5
categories=GUI
sentence=A GUI library to build custom user interfaces for desktop and android mode.
paragraph=Includes interface elements such as slider, button, knob, toggle, textfield, dropdown menu, listbox, tabs, charts and more.
version=85
prettyVersion=2.2.6
id=058
type=library
minRevision=0
maxRevision=0
download=http://www.sojamo.de/libraries/controlP5/controlP5.zip
library
name=Interfascia
authors=[Brendan Berg](http://berg.industries/)
url=http://github.com/brendanberg/interfascia
categories=GUI,Utilities
sentence=Build simple yet gorgeous user interfaces.
paragraph=Interfascia is an event-based GUI toolkit that provides standard interface widgets like text fields, buttons, checkboxes, and sliders.
version=4
prettyVersion=004
minRevision=0
maxRevision=0
id=180
type=library
download=http://interfascia.berg.industries/download/interfascia.zip
library
name=meter
authors=Bill (Papa) Kujawa
url=https://github.com/BillKujawa/meter.git
categories=GUI,Hardware
sentence=Display software, Arduino, or other sensor values in an analog meter.
paragraph=Defaults to an analog voltage meter of 0 - 5 volt range. A sensor reading is mapped to a meter value. Defaults to a half circle meter. The upper left corner of the meter is specified. The height is calculated as needed. Most of the meter parts can be changed by setting variables. May be used without microprocessor hardware to display software values.
version=1
prettyVersion=1.0c
minRevision=0
maxRevision=0
id=224
type=library
download=https://github.com/BillKujawa/meter/releases/download/latest/meter.zip
library
name=UiBooster
authors=[Nick 'Milchreis' Müller](http://github.com/milchreis)
url=http://github.com/milchreis/uibooster-for-processing
categories=GUI
sentence=Creates fast and easy GUI components for your sketch.
paragraph=With UiBooster you creates in a few lines of code dialog boxes, custom forms, alerts or notification which interact with your sketch. It's made for easy use and fast results.
version=1210
prettyVersion=1.21.0
minRevision=263
maxRevision=0
id=256
type=library
download=https://github.com/Milchreis/uibooster-for-processing/releases/latest/download/UiBooster.zip
library
name=Swing Helper
categories=GUI
authors=Michael Lukas
url=https://github.com/NumericPrime/SwingHelperProcessing
sentence=Allows using swing GUI components in Processing windows and includes utility for swing in general
paragraph=Adding swing components to processing is hard this library makes this process easier by adding a few classes and annotations that allow to merge a processing content with swing components. The library adds 3 classes to do that in various ways and allow including custom ways with just a few lines of code. The library also includes utility to format buttons by e.g. edit their color or strap methods onto them along with a few other QOL functions.
version=8
prettyVersion=1.1.1
id=281
type=library
minRevision=0
maxRevision=0
download=https://github.com/NumericPrime/SwingHelperProcessing/releases/latest/download/SwingHelperLib.zip
library
name=LazyGui
url=https://github.com/KrabCode/LazyGui
categories=GUI
authors=[Jakub 'Krab' Rak](https://github.com/KrabCode)
sentence=Feature rich, visually minimalist GUI for a smooth tinkering experience.
paragraph=Make more complex scenes and animations faster by not mentioning any control elements or folders in setup(). Only ask for their values in draw() at unique string paths and let the GUI take care of the windows and control elements. Features a json save system with autosave on program exit, copy/paste, undo/redo, these control elements: [slider, 2D plot, color picker, gradient picker, button, toggle, text input, radio], and much more... Works on Windows, Mac and Linux.
version=51
prettyVersion=v1.11.1
minRevision=0