├── CMakeLists.txt ├── LICENSE ├── NotesMisc.txt ├── README.md ├── cmake └── xConfig.cmake.in ├── doc ├── CMakeLists.txt ├── Doxyfile.in ├── periLogo.png ├── periLogo.xcf ├── periLogoOpenGraph.png ├── periLogoOpenGraph.xcf └── perideticSummary.pdf ├── eval ├── CMakeLists.txt ├── evalExcess.cpp ├── evalMathSummary.cpp ├── evalSpeed.cpp └── plotZetaDiffs.plt ├── examples ├── CMakeLists.txt ├── README.md ├── lpaForXyz.cpp ├── minimalExample.cpp ├── precision.cpp ├── xyzForLpaDegrees.cpp └── xyzForLpaRadians.cpp ├── include ├── CMakeLists.txt ├── periDetail.h └── peridetic.h ├── periUse ├── CMakeLists.txt ├── README.md ├── helloCommon.h ├── helloSansPeri.cpp ├── helloWithPeri.cpp ├── periCodeSizeMains.png └── runExample.sh └── tests ├── CMakeLists.txt ├── corsDataPairs.h ├── corsDataParser.h ├── periLocal.h ├── periSim.h ├── testAccuracy.cpp ├── testBuildHello.cpp ├── testCORS.cpp ├── testLocal.cpp ├── testMath.cpp └── testXforms.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/LICENSE -------------------------------------------------------------------------------- /NotesMisc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/NotesMisc.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/README.md -------------------------------------------------------------------------------- /cmake/xConfig.cmake.in: -------------------------------------------------------------------------------- 1 | 2 | @PACKAGE_INIT@ 3 | 4 | # 5 | # Load cmake-script for export targets 6 | # 7 | 8 | include(${CMAKE_CURRENT_LIST_DIR}/@EXPORT_FILENAME@) 9 | 10 | -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/periLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/doc/periLogo.png -------------------------------------------------------------------------------- /doc/periLogo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/doc/periLogo.xcf -------------------------------------------------------------------------------- /doc/periLogoOpenGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/doc/periLogoOpenGraph.png -------------------------------------------------------------------------------- /doc/periLogoOpenGraph.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/doc/periLogoOpenGraph.xcf -------------------------------------------------------------------------------- /doc/perideticSummary.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/doc/perideticSummary.pdf -------------------------------------------------------------------------------- /eval/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/eval/CMakeLists.txt -------------------------------------------------------------------------------- /eval/evalExcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/eval/evalExcess.cpp -------------------------------------------------------------------------------- /eval/evalMathSummary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/eval/evalMathSummary.cpp -------------------------------------------------------------------------------- /eval/evalSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/eval/evalSpeed.cpp -------------------------------------------------------------------------------- /eval/plotZetaDiffs.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/eval/plotZetaDiffs.plt -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/lpaForXyz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/examples/lpaForXyz.cpp -------------------------------------------------------------------------------- /examples/minimalExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/examples/minimalExample.cpp -------------------------------------------------------------------------------- /examples/precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/examples/precision.cpp -------------------------------------------------------------------------------- /examples/xyzForLpaDegrees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/examples/xyzForLpaDegrees.cpp -------------------------------------------------------------------------------- /examples/xyzForLpaRadians.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/examples/xyzForLpaRadians.cpp -------------------------------------------------------------------------------- /include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/include/CMakeLists.txt -------------------------------------------------------------------------------- /include/periDetail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/include/periDetail.h -------------------------------------------------------------------------------- /include/peridetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/include/peridetic.h -------------------------------------------------------------------------------- /periUse/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/periUse/CMakeLists.txt -------------------------------------------------------------------------------- /periUse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/periUse/README.md -------------------------------------------------------------------------------- /periUse/helloCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/periUse/helloCommon.h -------------------------------------------------------------------------------- /periUse/helloSansPeri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/periUse/helloSansPeri.cpp -------------------------------------------------------------------------------- /periUse/helloWithPeri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/periUse/helloWithPeri.cpp -------------------------------------------------------------------------------- /periUse/periCodeSizeMains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/periUse/periCodeSizeMains.png -------------------------------------------------------------------------------- /periUse/runExample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/periUse/runExample.sh -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/corsDataPairs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/tests/corsDataPairs.h -------------------------------------------------------------------------------- /tests/corsDataParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/tests/corsDataParser.h -------------------------------------------------------------------------------- /tests/periLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/tests/periLocal.h -------------------------------------------------------------------------------- /tests/periSim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/tests/periSim.h -------------------------------------------------------------------------------- /tests/testAccuracy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/tests/testAccuracy.cpp -------------------------------------------------------------------------------- /tests/testBuildHello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/tests/testBuildHello.cpp -------------------------------------------------------------------------------- /tests/testCORS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/tests/testCORS.cpp -------------------------------------------------------------------------------- /tests/testLocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/tests/testLocal.cpp -------------------------------------------------------------------------------- /tests/testMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/tests/testMath.cpp -------------------------------------------------------------------------------- /tests/testXforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stellacore/peridetic/HEAD/tests/testXforms.cpp --------------------------------------------------------------------------------