Skip to content

Commit

Permalink
format a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
shiinamiyuki committed Apr 15, 2024
1 parent bd24930 commit 5923bf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion luisa_compute/src/lang/ops/spread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ where

/// lerp(x, y, t) = x*(1-t) + y*t
/// the parameter order is the same as in GLSL/HLSL
pub fn lerp<A,B,T>(x: A, y: B, t: T) -> <A as FloatLerpExpr<B, T>>::Output
pub fn lerp<A, B, T>(x: A, y: B, t: T) -> <A as FloatLerpExpr<B, T>>::Output
where
A: FloatLerpExpr<B, T>,
{
Expand Down

0 comments on commit 5923bf7

Please sign in to comment.