mesh_transform
ABSTRACT
The mesh_transform function interpolates between two mesh trees using a specified interpolation factor.
PARAMETERS
src_tree | Represents the source mesh tree. |
dst_tree | Represents the destination mesh tree. |
t | A scalar value between 0 and 1, indicating the interpolation factor. A value of 0 corresponds to the source mesh, while 1 corresponds to the destination mesh. |
RETURN
Interpolates between the source and destination mesh trees based on the provided interpolation factor 't'. The resulting mesh tree is a blend between the two input trees according to the specified factor.
DECLARATION
func mesh_transform(src_tree, dst_tree, t)