Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/io/wavefront_obj/exporter/obj_export_mesh.cc')
-rw-r--r--source/blender/io/wavefront_obj/exporter/obj_export_mesh.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/io/wavefront_obj/exporter/obj_export_mesh.cc b/source/blender/io/wavefront_obj/exporter/obj_export_mesh.cc
index 27b71319f39..91b59059545 100644
--- a/source/blender/io/wavefront_obj/exporter/obj_export_mesh.cc
+++ b/source/blender/io/wavefront_obj/exporter/obj_export_mesh.cc
@@ -369,7 +369,7 @@ float3 OBJMesh::calc_poly_normal(const int poly_index) const
static float round_float_to_n_digits(const float f, int round_digits)
{
float scale = powf(10.0, round_digits);
- return ceilf((scale * f - 0.49999999f)) / scale;
+ return ceilf(scale * f - 0.49999999f) / scale;
}
static float3 round_float3_to_n_digits(const float3 &v, int round_digits)