├── .gitignore ├── LICENSE ├── README.md ├── doc └── intro.md ├── project.clj ├── src └── fresnel │ └── lenses.cljc └── test └── fresnel ├── lenses_test.cljc ├── perf_test.clj └── runner.cljs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirkendall/fresnel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirkendall/fresnel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirkendall/fresnel/HEAD/README.md -------------------------------------------------------------------------------- /doc/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirkendall/fresnel/HEAD/doc/intro.md -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirkendall/fresnel/HEAD/project.clj -------------------------------------------------------------------------------- /src/fresnel/lenses.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirkendall/fresnel/HEAD/src/fresnel/lenses.cljc -------------------------------------------------------------------------------- /test/fresnel/lenses_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirkendall/fresnel/HEAD/test/fresnel/lenses_test.cljc -------------------------------------------------------------------------------- /test/fresnel/perf_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirkendall/fresnel/HEAD/test/fresnel/perf_test.clj -------------------------------------------------------------------------------- /test/fresnel/runner.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckirkendall/fresnel/HEAD/test/fresnel/runner.cljs --------------------------------------------------------------------------------