Easier to find 'static inline'
This commit is contained in:
@ -361,7 +361,7 @@ class Planner {
|
||||
* Returns 1.0 if planner.z_fade_height is 0.0.
|
||||
* Returns 0.0 if Z is past the specified 'Fade Height'.
|
||||
*/
|
||||
inline static float fade_scaling_factor_for_z(const float &rz) {
|
||||
static inline float fade_scaling_factor_for_z(const float &rz) {
|
||||
static float z_fade_factor = 1;
|
||||
if (z_fade_height) {
|
||||
if (rz >= z_fade_height) return 0;
|
||||
|
Reference in New Issue
Block a user