SceneGraph: disable deprecation warnings in deprecated code on MSVC.
Used `#pragma warning(suppress: 4996)` before which was apparently doing
completely nothing. Switched to `#pragma warning(disable: 4996)` now.
Started to become problematic on latest MSVC 2017 update (19.11) -- the
UWP builds are failing because of implicit warning-as-error.
CORRADE_DEPRECATED("use translate() or translateLocal() instead")AbstractBasicTranslationRotation2D<T>&translate(constMath::Vector2<T>&vector,TransformationTypetype){
CORRADE_DEPRECATED("use translate() or translateLocal() instead")AbstractBasicTranslationRotation3D<T>&translate(constMath::Vector3<T>&vector,TransformationTypetype){
CORRADE_DEPRECATED("use translate() or translateLocal() instead")AbstractBasicTranslationRotationScaling2D<T>&translate(constMath::Vector2<T>&vector,TransformationTypetype){
CORRADE_DEPRECATED("use rotate() or rotateLocal() instead")AbstractBasicTranslationRotationScaling2D<T>&rotate(Math::Rad<T>angle,TransformationTypetype){
CORRADE_DEPRECATED("use scale() or scaleLocal() instead")AbstractBasicTranslationRotationScaling3D<T>&scale(constMath::Vector3<T>&vector,TransformationTypetype){
CORRADE_DEPRECATED("use translate() or translateLocal() instead")AbstractBasicTranslationRotationScaling3D<T>&translate(constMath::Vector3<T>&vector,TransformationTypetype){
CORRADE_DEPRECATED("use rotate() or rotateLocal() instead")AbstractBasicTranslationRotationScaling3D<T>&rotate(Math::Rad<T>angle,constMath::Vector3<T>&normalizedAxis,TransformationTypetype){
CORRADE_DEPRECATED("use rotateX() or rotateXLocal() instead")AbstractBasicTranslationRotationScaling3D<T>&rotateX(Math::Rad<T>angle,TransformationTypetype){
CORRADE_DEPRECATED("use rotateY() or rotateYLocal() instead")AbstractBasicTranslationRotationScaling3D<T>&rotateY(Math::Rad<T>angle,TransformationTypetype){
CORRADE_DEPRECATED("use rotateZ() or rotateZLocal() instead")AbstractBasicTranslationRotationScaling3D<T>&rotateZ(Math::Rad<T>angle,TransformationTypetype){
CORRADE_DEPRECATED("use rotateX() or rotateXLocal() instead")Object<BasicDualQuaternionTransformation<T>>&rotateX(Math::Rad<T>angle,TransformationTypetype){
CORRADE_DEPRECATED("use rotateY() or rotateYLocal() instead")Object<BasicDualQuaternionTransformation<T>>&rotateY(Math::Rad<T>angle,TransformationTypetype){
CORRADE_DEPRECATED("use rotateZ() or rotateZLocal() instead")Object<BasicDualQuaternionTransformation<T>>&rotateZ(Math::Rad<T>angle,TransformationTypetype){