grafica icon indicating copy to clipboard operation
grafica copied to clipboard

A simple and configurable plotting library for Processing

Results 11 grafica issues
Sort by recently updated
recently updated
newest added

` plot.activatePanning(); plot.activateZooming(1.1, CENTER, CENTER); plot2.activatePanning(); plot2.activateZooming(1.1, CENTER, CENTER);` Above code does not have any effect on the graphs if the option P3D is enabled. (cant zoom or pan) Any...

I am trying to install the grafica library at the 'Contribution Manager' of the Processing App on macOS (Sketch > Import library > Manage Libraries... > Clicking on grafica to...

grafica looks so nice but all Processing samples arent working. Please... ClassNotFoundException: grafica.GPointsArray

is this library run on android ?

Hi, I would like to plot a simple graph in real time from two sensors values sent by an arduino based on the mouse position example. My problem is that...

The Oktoberfest example has this lookup: ``` int[] daysPerMonth = new int[] {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int[] daysPerMonthLeapYear = new int[] {31,...

Added method for getting distance from one point to the other.

Overriden the toString to represent a point as a string (x,y)

When rendering with P3D Grafica plots have rendering artefacts. For example: ![grafica p3d problems](https://user-images.githubusercontent.com/29226260/34385571-fc999f04-eb23-11e7-914c-3d7e3db8d27a.png) This is reproducible with this simple sketch: ```java import grafica.*; GPlot plot; GPointsArray points; int nPoints...

I'm trying to make a gui where the plot changes as time goes on. The problem is the only way to do it is to continually draw plots on top...