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-06 19:17:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-06 19:17:43 +0400
commitec3b0c6a968210512e0c36e1e62eefcbe0cf1ea0 (patch)
tree8539e5cf67d14b2256d3171ffb3d1f22d371bf82 /source/blender/editors/space_view3d/drawvolume.c
parent0634d8a7458c9fed536f3240edf610587ec63067 (diff)
misc macro --> bli math lib functions
Diffstat (limited to 'source/blender/editors/space_view3d/drawvolume.c')
-rw-r--r--source/blender/editors/space_view3d/drawvolume.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/drawvolume.c b/source/blender/editors/space_view3d/drawvolume.c
index 7c89ce0f689..6605d488d36 100644
--- a/source/blender/editors/space_view3d/drawvolume.c
+++ b/source/blender/editors/space_view3d/drawvolume.c
@@ -242,7 +242,7 @@ void draw_volume(ARegion *ar, GPUTexture *tex, float *min, float *max, int res[3
tstart();
- VECSUB(size, max, min);
+ sub_v3_v3v3(size, max, min);
// maxx, maxy, maxz
cv[0][0] = max[0];