Improved surface normal alignment

This commit is contained in:
2024-02-20 23:58:44 +01:00
parent 1e5ab718bf
commit 4e632608e1
4 changed files with 55 additions and 37 deletions

View File

@ -7,4 +7,9 @@ static func dampf(from: float, to: float, weight: float, smoothing: float = 0.75
return lerpf(from, to, 1 - exp(-smoothing * weight))
static func damp_angle(from: float, to: float, weight: float, smoothing: float = 0.75):
return lerp_angle(from, to, 1 - exp(-smoothing * weight))
return lerp_angle(from, to, 1 - exp(-smoothing * weight))
static func from_to_rotation(from: Vector3, to: Vector3) -> Quaternion:
var axis := from.cross(to).normalized()
var angle := from.angle_to(to)
return Quaternion(axis, angle)