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:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-12-14 14:47:28 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-12-14 14:47:28 +0300
commit696721648558aef94e8488dbef13eff758abdf08 (patch)
tree162f93caedfa89188f616ab86076919aef3b6902 /intern/cycles/blender/blender_object.cpp
parentc4d6fd3ec04a93376d08e7baa89846732c01ec04 (diff)
Cycles: Fix indendation
Diffstat (limited to 'intern/cycles/blender/blender_object.cpp')
-rw-r--r--intern/cycles/blender/blender_object.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/cycles/blender/blender_object.cpp b/intern/cycles/blender/blender_object.cpp
index 681a22e1f07..22cc4e6f030 100644
--- a/intern/cycles/blender/blender_object.cpp
+++ b/intern/cycles/blender/blender_object.cpp
@@ -148,8 +148,8 @@ public:
BL::Array<float, 24> boundbox = b_ob.bound_box();
for(int i = 0; i < 8; ++i) {
float3 p = make_float3(boundbox[3 * i + 0],
- boundbox[3 * i + 1],
- boundbox[3 * i + 2]);
+ boundbox[3 * i + 1],
+ boundbox[3 * i + 2]);
bb[i] = transform_point(&tfm, p);
}
@@ -203,7 +203,7 @@ private:
{
float3 camera_position = transform_get_column(&scene->camera->matrix, 3);
float3 bb_min = make_float3(FLT_MAX, FLT_MAX, FLT_MAX),
- bb_max = make_float3(-FLT_MAX, -FLT_MAX, -FLT_MAX);
+ bb_max = make_float3(-FLT_MAX, -FLT_MAX, -FLT_MAX);
/* Find min & max points for x & y & z on bounding box */
for(int i = 0; i < 8; ++i) {