All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.phraseProjectionToViewDepth_shader.kt Maven / Gradle / Ivy

The newest version!
package org.openrndr.shaderphrases.phrases
const val phraseProjectionToViewDepth = """float projectionToViewDepth(float projectionDepth, mat4 projectionInverse) {
    float z = (projectionDepth*2.0-1.0) * projectionInverse[2].z + projectionInverse[3].z;
    float w = (projectionDepth*2.0-1.0) * projectionInverse[2].w + projectionInverse[3].w;
    return z / w;
}"""




© 2015 - 2025 Weber Informatics LLC | Privacy Policy