With GaussSense SDK for Processing, you can easily visualize the magnetic field on Mini GaussSense as well as the bipolar points(north and south), roll angle, and pitch angle of tilt.
In this tutorial, you will learn how to use the examples of GaussSense SDK to showcase the basic features of Mini GaussSense.
gs.drawRawData2D(this.width, this.height);
int upsampleFactor = 5; // Set between 1 ~ 10
gs.drawUpsampledData2D(this.width, this.height, upsampleFactor);
float thld = 15; // Unit: Gauss
float PointRadius = 15;
// Draw both polar points with intensity threshold
gs.drawBasicBipolarPoints(thld, PointRadius);
// Draw N/S polar point with intensity threshold
gs.drawBasicNorthPoint(thld, PointRadius);
gs.drawBasicSouthPoint(thld, PointRadius);