├── .gitignore ├── README ├── bin ├── README ├── fricas2sixel ├── fricas2sixel_old └── latex2sixel └── src ├── data2d.gpl ├── data3d.gpl ├── draw+.spad ├── drawfe.spad ├── my3d.gpl ├── myplot.gpl ├── sdraw.dat ├── sdraw.spad ├── sixel.input ├── sixel31415926.gpl ├── test.ps ├── test.svg ├── test2.ps ├── test2.svg ├── test_draw.input ├── view2D+.spad └── view3D+.spad /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.NRLIB 3 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/README -------------------------------------------------------------------------------- /bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/bin/README -------------------------------------------------------------------------------- /bin/fricas2sixel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/bin/fricas2sixel -------------------------------------------------------------------------------- /bin/fricas2sixel_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/bin/fricas2sixel_old -------------------------------------------------------------------------------- /bin/latex2sixel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/bin/latex2sixel -------------------------------------------------------------------------------- /src/data2d.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/data2d.gpl -------------------------------------------------------------------------------- /src/data3d.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/data3d.gpl -------------------------------------------------------------------------------- /src/draw+.spad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/draw+.spad -------------------------------------------------------------------------------- /src/drawfe.spad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/drawfe.spad -------------------------------------------------------------------------------- /src/my3d.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/my3d.gpl -------------------------------------------------------------------------------- /src/myplot.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/myplot.gpl -------------------------------------------------------------------------------- /src/sdraw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/sdraw.dat -------------------------------------------------------------------------------- /src/sdraw.spad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/sdraw.spad -------------------------------------------------------------------------------- /src/sixel.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/sixel.input -------------------------------------------------------------------------------- /src/sixel31415926.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/sixel31415926.gpl -------------------------------------------------------------------------------- /src/test.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/test.ps -------------------------------------------------------------------------------- /src/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/test.svg -------------------------------------------------------------------------------- /src/test2.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/test2.ps -------------------------------------------------------------------------------- /src/test2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/test2.svg -------------------------------------------------------------------------------- /src/test_draw.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/test_draw.input -------------------------------------------------------------------------------- /src/view2D+.spad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/view2D+.spad -------------------------------------------------------------------------------- /src/view3D+.spad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilqed/sixelSPAD/HEAD/src/view3D+.spad --------------------------------------------------------------------------------