{"id":17590754,"url":"https://github.com/setanarut/fastnoise","last_synced_at":"2025-03-29T18:14:55.450Z","repository":{"id":257804265,"uuid":"864389204","full_name":"setanarut/fastnoise","owner":"setanarut","description":"FastNoise Lite is a noise generator package for Go","archived":false,"fork":false,"pushed_at":"2024-09-29T04:57:53.000Z","size":31,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-04T19:14:13.230Z","etag":null,"topics":["cellular-noise","noise","noise-algorithms","noise-generator","opensimplex","opensimplex-noise","perlin-noise","voronoi"],"latest_commit_sha":null,"homepage":"https://pkg.go.dev/github.com/setanarut/fastnoise","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/setanarut.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-28T05:07:49.000Z","updated_at":"2024-12-30T17:36:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"7f224aba-6b8e-46b1-af04-7699dd667b7b","html_url":"https://github.com/setanarut/fastnoise","commit_stats":null,"previous_names":["setanarut/fastnoise"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/setanarut%2Ffastnoise","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/setanarut%2Ffastnoise/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/setanarut%2Ffastnoise/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/setanarut%2Ffastnoise/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/setanarut","download_url":"https://codeload.github.com/setanarut/fastnoise/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246223324,"owners_count":20743168,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cellular-noise","noise","noise-algorithms","noise-generator","opensimplex","opensimplex-noise","perlin-noise","voronoi"],"created_at":"2024-10-22T04:24:32.942Z","updated_at":"2025-03-29T18:14:55.433Z","avatar_url":"https://github.com/setanarut.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FastNoise Lite\n\n[Web Preview App](https://auburn.github.io/FastNoiseLite)\n\nFastNoise Lite is a noise generation package with a large selection of noise algorithms.\n\n## Features\n\n- 2D \u0026 3D sampling\n- OpenSimplex2 noise\n- OpenSimplex2S noise\n- Cellular (Voronoi) noise\n- Perlin noise\n- Value noise\n- Value Cubic noise\n- OpenSimplex2-based domain warp\n- Basic Grid Gradient domain warp\n- Multiple fractal options for all of the above\n- Supports floats and/or doubles\n\n## Getting Started\n\nHere's an example for creating a 128x128 array of OpenSimplex2 noise\n\n```go\n// Create and configure noise state (either float32 or float64)\nvar noise = fastnoise.New[float32]()\nnoise.NoiseType(fastnoise.OpenSimplex2)\n\n// Gather noise data\nvar noiseData [128][128]float32\n\nfor x := 0; x \u003c 128; x++ {\n\tfor y := 0; y \u003c 128; y++ {\n\t\tnoiseData[x][y] = noise.Noise2D(x, y)\n\t}\n}\n\n// Do something with this data...\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsetanarut%2Ffastnoise","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsetanarut%2Ffastnoise","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsetanarut%2Ffastnoise/lists"}