Skip to content

Instantly share code, notes, and snippets.

View osnmsn's full-sized avatar

osnmsn

View GitHub Profile
@osnmsn
osnmsn / perlin.cxx
Created January 10, 2026 02:09
一个AVX实现更强的柏林噪声
/*
The MIT License (MIT)
Copyright (c) 2026 osnmsn
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
@osnmsn
osnmsn / perlin.lua
Created January 8, 2026 00:56
一个LuaJIT实现的柏林噪声(A perlin noise made by LuaJIT)
--[[The MIT License (MIT)
Copyright (c) 2026 osnmsn
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
@osnmsn
osnmsn / perlin.cc
Created January 7, 2026 23:55
一个AVX实现的柏林噪声(A perlin noise made by AVX)
/*
The MIT License (MIT)
Copyright (c) 2026 osnmsn
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all