euler

An experimental mathematics library for computer graphics.

Project ideas

Demonstration

Unprojecting a ray

rust let projection = mat4!(); let inverse_projection = projection.invert(); let ndc = vec2!(-0.5, 0.5); let eye = inverse_projection * vec4!(ndc, -1.0, 1.0); let view = euler::Transform { translation: vec3!(1.0, 0.0, -1.0), rotation: quat!(1.0, 0.0, 0.0, PI / 2.0), scale: vec3!(1.0), }.matrix(); let inverse_view = view.invert(); let world = inverse_view * vec4!(eye.xy(), -1.0, 0.0); let ray = world.xyz().normalize();

License agreement

Licensed under either of

at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.