KO
|
EN
gitlite โ search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
fibpy
โ 21
Open GitHub โ
๐ Fibonacci spiral sampling utilities
Download README (.md)
Explore Similar Repositories
pandoc-tex2svg
:
Pandoc filter to convert math to SVG using MathJax-node's tex2svg
scratch-render-fonts
:
Fonts for Scratch SVG rendering
vue-template-compiler
:
No description available.
surveymonkey-v3-api-php
:
SurveyMonkey v3 API Wrapper
ConnectPageFields
:
Allows the connecting of two related Page fields so that changing one updates the other.
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
fibpy
?
Download (.md)
[![License][s1]][li] [s1]: https://img.shields.io/badge/licence-GPL%203.0-blue.svg [li]: https://raw.githubusercontent.com/matt77hias/fibpy/master/LICENSE.txt # fibpy ## About Fibonacci spiral sampling (Quasi-Monte Carlo techniques) utilities. ## Use ### Sampling in unit circle (with jagged boundary) <p align="center"> <img src="res/circle_mode0_alpha0.png" width="410"> <img src="res/circle_mode1_alpha0.png" width="410"> </p> <p align="center">Default perturbation - Random perturbation</p> ### Sampling in unit circle (with smooth boundary) <p align="center"> <img src="res/circle_mode0_alpha2.png" width="410"> <img src="res/circle_mode1_alpha2.png" width="410"> </p> <p align="center">Default perturbation - Random perturbation</p> ### Sampling on unit hemisphere <p align="center"> <img src="res/hemisphere_mode0.png" width="410"> <img src="res/hemisphere_mode1.png" width="410"> </p> <p align="center">Default perturbation - Random perturbation</p> ### Sampling on unit sphere <p align="center"> <img src="res/sphere_mode0.png" width="410"> <img src="res/sphere_mode1.png" width="410"> </p> <p align="center">Default perturbation - Random perturbation</p> ### Cosine weighted sampling on unit hemisphere <p align="center"> <img src="res/cosineweightedhemisphere_mode0.png" width="410"> <img src="res/cosineweightedhemisphere_mode1.png" width="410"> </p> <p align="center">Default perturbation - Random perturbation</p> ```python # Code test.test() ``` ## Bibliography ROBERTS M.: [*Evenly distributing points on a sphere*](http://extremelearning.com.au/evenly-distributing-points-on-a-sphere/), 2018.