plebeiangraphlibrary 2.1.2 → 2.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -171,6 +171,12 @@ Remember to follow our Code of Conduct to ensure a welcoming and inclusive envir
171
171
 
172
172
  ## References and acknowledgements
173
173
 
174
+ **PGL:** If you use this library in your research, please cite:
175
+
176
+ > Haldar, I. (2024). The plebeian Graph Library: A WebGL based network visualisation and diagnostics package. *Journal of Open Source Software*, 9(96), 5887. https://doi.org/10.21105/joss.05887
177
+
178
+ BibTeX entry is available in `paper.bib` as `Haldar2024`.
179
+
174
180
  **Stress-based layout (createStressSGD3D):** The stress-minimization-by-SGD algorithm and schedule used in PGL are taken from the **(sgd)²** reference implementation ([jxz12/s_gd2](https://github.com/jxz12/s_gd2)) from Imperial College London. The underlying method is from the paper: J. X. Zheng, S. Pawar, D. F. M. Goodman, *Graph Drawing by Stochastic Gradient Descent*, IEEE Transactions on Visualization and Computer Graphics, [arXiv:1710.04626](https://arxiv.org/abs/1710.04626). Example graph data (e.g. football.txt) in the Stress SGD demo are from the same s_gd2 repository.
175
181
 
176
182
  **PGL:** This library was sponsored by the Geometry Lab under the Laboratory for Design Technologies at the Graduate School of Design, Harvard University. Many thanks to Andrew Witt for guiding this project. This project was developed by [Indrajeet Haldar](https://www.indrajeethaldar.com/).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plebeiangraphlibrary",
3
- "version": "2.1.2",
3
+ "version": "2.1.3",
4
4
  "description": "A NetworkX like package for graphs in javascript",
5
5
  "source": "./Src/index.ts",
6
6
  "main": "./Build/pgl.js",