Skip to content

Commit

Permalink
v-up
Browse files Browse the repository at this point in the history
  • Loading branch information
nobuyuki83 committed Mar 20, 2024
1 parent 9489f38 commit bf95efa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "del-geo"
version = "0.1.20"
version = "0.1.21"
edition = "2021"
authors = ["Nobuyuki Umetani <[email protected]>"]
description = "2D/3D geometry utility codes"
Expand Down
4 changes: 2 additions & 2 deletions src/tri3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ pub fn emat_cotangent_laplacian<T>(

/// Möller–Trumbore ray-triangle intersection algorithm
///
/// https://en.wikipedia.org/wiki/M%C3%B6ller%E2%80%93Trumbore_intersection_algorithm
/// https://www.scratchapixel.com/lessons/3d-basic-rendering/ray-tracing-rendering-a-triangle/moller-trumbore-ray-triangle-intersection
/// <https://en.wikipedia.org/wiki/M%C3%B6ller%E2%80%93Trumbore_intersection_algorithm>
/// <https://www.scratchapixel.com/lessons/3d-basic-rendering/ray-tracing-rendering-a-triangle/moller-trumbore-ray-triangle-intersection>
pub fn ray_triangle_intersection_<T>(
ray_org: &[T; 3],
ray_dir: &[T; 3],
Expand Down

0 comments on commit bf95efa

Please sign in to comment.