From 0fbf3b990d0dc36fb1dd914a9a92b57e351a8804 Mon Sep 17 00:00:00 2001 From: Emmanuel Leblond Date: Tue, 10 Jan 2017 09:11:36 +0100 Subject: [PATCH] Remove deprecated Vector2.floorf method --- core/variant_call.cpp | 5 ----- doc/base/classes.xml | 7 ------- 2 files changed, 12 deletions(-) diff --git a/core/variant_call.cpp b/core/variant_call.cpp index 5c9e8e9248f..6aa37601a01 100644 --- a/core/variant_call.cpp +++ b/core/variant_call.cpp @@ -423,10 +423,6 @@ static void _call_##m_type##_##m_method(Variant& r_ret,Variant& p_self,const Var r_ret=Variant(); } - static void _call_Vector2_floorf(Variant& r_ret,Variant& p_self,const Variant** p_args) { - r_ret = reinterpret_cast(p_self._data._mem)->floor(); - }; - VCALL_LOCALMEM0R(Quat,length); VCALL_LOCALMEM0R(Quat,length_squared); VCALL_LOCALMEM0R(Quat,normalized); @@ -1458,7 +1454,6 @@ _VariantCall::addfunc(Variant::m_vtype,Variant::m_ret,_SCS(#m_method),VCALL(m_cl ADDFUNC1(VECTOR2,VECTOR2,Vector2,rotated,REAL,"phi",varray()); ADDFUNC0(VECTOR2,VECTOR2,Vector2,tangent,varray()); ADDFUNC0(VECTOR2,VECTOR2,Vector2,floor,varray()); - ADDFUNC0(VECTOR2,VECTOR2,Vector2,floorf,varray()); ADDFUNC1(VECTOR2,VECTOR2,Vector2,snapped,VECTOR2,"by",varray()); ADDFUNC0(VECTOR2,REAL,Vector2,get_aspect,varray()); ADDFUNC1(VECTOR2,REAL,Vector2,dot,VECTOR2,"with",varray()); diff --git a/doc/base/classes.xml b/doc/base/classes.xml index f84df42d541..47aeaa34274 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -44978,13 +44978,6 @@ do_property]. Remove the fractional part of x and y. - - - - - Remove the fractional part of x and y. - -