aboutsummaryrefslogtreecommitdiff
path: root/core/math
diff options
context:
space:
mode:
authorLaytan Laats <laytanlaats@hotmail.com>2024-09-03 19:59:04 +0200
committerLaytan Laats <laytanlaats@hotmail.com>2024-09-03 19:59:04 +0200
commit288312a8126d71fae26c9d62a8cd342d830e1c5f (patch)
treeaa56a083e0222975888a24cf8d755b7d0a4f1bc0 /core/math
parent0e6109e171d24b3bb17289219ae3b482c24f2460 (diff)
core: improve package doc comments for the documentation generator
Diffstat (limited to 'core/math')
-rw-r--r--core/math/noise/opensimplex2.odin6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/math/noise/opensimplex2.odin b/core/math/noise/opensimplex2.odin
index d28356f2c..634c32948 100644
--- a/core/math/noise/opensimplex2.odin
+++ b/core/math/noise/opensimplex2.odin
@@ -1,8 +1,8 @@
/*
OpenSimplex2 noise implementation.
- Ported from https://github.com/KdotJPG/OpenSimplex2.
- Copyright 2022 Yuki2 (https://github.com/NoahR02)
+ Ported from [[ https://github.com/KdotJPG/OpenSimplex2 }].
+ Copyright 2022 Yuki2 [[ https://github.com/NoahR02 ]]
*/
package math_noise
@@ -177,4 +177,4 @@ noise_4d_fallback :: proc(seed: i64, coord: Vec4) -> (value: f32) {
// Get points for A4 lattice
skew := f64(SKEW_4D) * (coord.x + coord.y + coord.z + coord.w)
return _internal_noise_4d_unskewed_base(seed, coord + skew)
-} \ No newline at end of file
+}