Bump version to 0.0.16

Add source jars
Change cubic visibility
This commit is contained in:
Edwin Jakobs
2018-12-05 23:39:19 +01:00
parent 362c7a5889
commit 6502899a5d
2 changed files with 20 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ package org.openrndr.extra.noise
private const val CUBIC_3D_BOUNDING = 1 / (1.5 * 1.5 * 1.5).toFloat()
private fun cubic(seed: Int, x: Double, y: Double, z: Double): Double {
fun cubic(seed: Int, x: Double, y: Double, z: Double): Double {
val x1 = x.fastFloor()
val y1 = y.fastFloor()
val z1 = z.fastFloor()