From f68cfd6bb078482c4a779a6e26a56e2734edb5b8 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 25 Sep 2022 18:33:28 +1000 Subject: Cleanup: replace C-style casts with functional casts for numeric types --- source/blender/compositor/operations/COM_BoxMaskOperation.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/compositor/operations/COM_BoxMaskOperation.cc') diff --git a/source/blender/compositor/operations/COM_BoxMaskOperation.cc b/source/blender/compositor/operations/COM_BoxMaskOperation.cc index 5b3e00afe31..85ac9434647 100644 --- a/source/blender/compositor/operations/COM_BoxMaskOperation.cc +++ b/source/blender/compositor/operations/COM_BoxMaskOperation.cc @@ -19,10 +19,10 @@ void BoxMaskOperation::init_execution() { input_mask_ = this->get_input_socket_reader(0); input_value_ = this->get_input_socket_reader(1); - const double rad = (double)data_->rotation; + const double rad = double(data_->rotation); cosine_ = cos(rad); sine_ = sin(rad); - aspect_ratio_ = ((float)this->get_width()) / this->get_height(); + aspect_ratio_ = float(this->get_width()) / this->get_height(); } void BoxMaskOperation::execute_pixel_sampled(float output[4], -- cgit v1.2.3