plane3_lerp
plane3_lerp(destination, destination_offset, a_normal_x, a_normal_y, a_normal_z, a_constant, b_normal_x, b_normal_y, b_normal_z, b_constant, t)
Interpolate between two planes in linear space.
Note: It does not work for planes that are parallel with opposing normals. There is no valid solution, as the number of such planes would be infinite.
Kind: global function
| Param | Type |
|---|---|
| destination | Array.<number> |
| destination_offset | number |
| a_normal_x | number |
| a_normal_y | number |
| a_normal_z | number |
| a_constant | number |
| b_normal_x | number |
| b_normal_y | number |
| b_normal_z | number |
| b_constant | number |
| t | number |