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:
authorCampbell Barton <ideasman42@gmail.com>2011-11-11 17:09:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-11 17:09:14 +0400
commite84c0980a3afb89301f8512acee64e525db3a49d (patch)
tree8700c1b43e1887ad8916c623b1f5066bc6b6f17f /intern/bsp
parent094c9799f9926ae37515a1fe0380403ce3298a77 (diff)
correct indentation and some whitespace edits (no functional changes)
Diffstat (limited to 'intern/bsp')
-rw-r--r--intern/bsp/intern/CSG_BooleanOps.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/intern/bsp/intern/CSG_BooleanOps.cpp b/intern/bsp/intern/CSG_BooleanOps.cpp
index 91523bad483..df1374ef10b 100644
--- a/intern/bsp/intern/CSG_BooleanOps.cpp
+++ b/intern/bsp/intern/CSG_BooleanOps.cpp
@@ -91,14 +91,14 @@ CSG_PerformBooleanOperation(
switch( op_type ) {
case e_csg_union:
- boolType = BOP_UNION;
- break;
+ boolType = BOP_UNION;
+ break;
case e_csg_difference:
- boolType = BOP_DIFFERENCE;
- break;
+ boolType = BOP_DIFFERENCE;
+ break;
default:
- boolType = BOP_INTERSECTION;
- break;
+ boolType = BOP_INTERSECTION;
+ break;
}
BoolOpState boolOpResult;