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>2012-03-12 03:47:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-12 03:47:41 +0400
commitcae11a98f98cf0fc299dbb641c6a748b83589054 (patch)
tree5700289684313664a07fd6480e9d9183f84cdf3a /source/blender/blenlib/intern/uvproject.c
parentac24d98e24c0d8d1dfd005d4f332e906f1b9664c (diff)
style cleanup
Diffstat (limited to 'source/blender/blenlib/intern/uvproject.c')
-rw-r--r--source/blender/blenlib/intern/uvproject.c101
1 files changed, 50 insertions, 51 deletions
diff --git a/source/blender/blenlib/intern/uvproject.c b/source/blender/blenlib/intern/uvproject.c
index 8b00d8e48a6..89621cdf48d 100644
--- a/source/blender/blenlib/intern/uvproject.c
+++ b/source/blender/blenlib/intern/uvproject.c
@@ -22,7 +22,6 @@
* \ingroup bli
*/
-
#include <math.h>
#include "MEM_guardedalloc.h"
@@ -48,45 +47,46 @@ void project_from_camera(float target[2], float source[3], UvCameraInfo *uci)
float pv4[4];
copy_v3_v3(pv4, source);
- pv4[3]= 1.0;
+ pv4[3] = 1.0;
/* rotmat is the object matrix in this case */
- if(uci->do_rotmat)
+ if (uci->do_rotmat)
mul_m4_v4(uci->rotmat, pv4);
/* caminv is the inverse camera matrix */
mul_m4_v4(uci->caminv, pv4);
- if(uci->do_pano) {
- float angle= atan2f(pv4[0], -pv4[2]) / ((float)M_PI * 2.0f); /* angle around the camera */
- if (uci->do_persp==0) {
- target[0]= angle; /* no correct method here, just map to 0-1 */
- target[1]= pv4[1] / uci->camsize;
+ if (uci->do_pano) {
+ float angle = atan2f(pv4[0], -pv4[2]) / ((float)M_PI * 2.0f); /* angle around the camera */
+ if (uci->do_persp == 0) {
+ target[0] = angle; /* no correct method here, just map to 0-1 */
+ target[1] = pv4[1] / uci->camsize;
}
else {
float vec2d[2]; /* 2D position from the camera */
- vec2d[0]= pv4[0];
- vec2d[1]= pv4[2];
- target[0]= angle * ((float)M_PI / uci->camangle);
- target[1]= pv4[1] / (len_v2(vec2d) * (uci->camsize * 2.0f));
+ vec2d[0] = pv4[0];
+ vec2d[1] = pv4[2];
+ target[0] = angle * ((float)M_PI / uci->camangle);
+ target[1] = pv4[1] / (len_v2(vec2d) * (uci->camsize * 2.0f));
}
}
else {
- if (pv4[2]==0.0f) pv4[2]= 0.00001f; /* don't allow div by 0 */
+ if (pv4[2] == 0.0f)
+ pv4[2] = 0.00001f; /* don't allow div by 0 */
- if (uci->do_persp==0) {
- target[0]= (pv4[0]/uci->camsize);
- target[1]= (pv4[1]/uci->camsize);
+ if (uci->do_persp == 0) {
+ target[0] = (pv4[0] / uci->camsize);
+ target[1] = (pv4[1] / uci->camsize);
}
else {
- target[0]= (-pv4[0]*((1.0f/uci->camsize)/pv4[2])) / 2.0f;
- target[1]= (-pv4[1]*((1.0f/uci->camsize)/pv4[2])) / 2.0f;
+ target[0] = (-pv4[0] * ((1.0f / uci->camsize) / pv4[2])) / 2.0f;
+ target[1] = (-pv4[1] * ((1.0f / uci->camsize) / pv4[2])) / 2.0f;
}
}
target[0] *= uci->xasp;
target[1] *= uci->yasp;
-
+
/* adds camera shift + 0.5 */
target[0] += uci->shiftx;
target[1] += uci->shifty;
@@ -95,54 +95,54 @@ void project_from_camera(float target[2], float source[3], UvCameraInfo *uci)
/* could rv3d->persmat */
void project_from_view(float target[2], float source[3], float persmat[4][4], float rotmat[4][4], float winx, float winy)
{
- float pv[3], pv4[4], x= 0.0, y= 0.0;
+ float pv[3], pv4[4], x = 0.0, y = 0.0;
mul_v3_m4v3(pv, rotmat, source);
copy_v3_v3(pv4, source);
- pv4[3]= 1.0;
+ pv4[3] = 1.0;
/* rotmat is the object matrix in this case */
- mul_m4_v4(rotmat, pv4);
+ mul_m4_v4(rotmat, pv4);
/* almost project_short */
mul_m4_v4(persmat, pv4);
- if(fabsf(pv4[3]) > 0.00001f) { /* avoid division by zero */
- target[0] = winx/2.0f + (winx/2.0f) * pv4[0] / pv4[3];
- target[1] = winy/2.0f + (winy/2.0f) * pv4[1] / pv4[3];
+ if (fabsf(pv4[3]) > 0.00001f) { /* avoid division by zero */
+ target[0] = winx / 2.0f + (winx / 2.0f) * pv4[0] / pv4[3];
+ target[1] = winy / 2.0f + (winy / 2.0f) * pv4[1] / pv4[3];
}
else {
/* scaling is lost but give a valid result */
- target[0] = winx/2.0f + (winx/2.0f) * pv4[0];
- target[1] = winy/2.0f + (winy/2.0f) * pv4[1];
+ target[0] = winx / 2.0f + (winx / 2.0f) * pv4[0];
+ target[1] = winy / 2.0f + (winy / 2.0f) * pv4[1];
}
- /* v3d->persmat seems to do this funky scaling */
- if(winx > winy) {
- y= (winx - winy)/2.0f;
+ /* v3d->persmat seems to do this funky scaling */
+ if (winx > winy) {
+ y = (winx - winy) / 2.0f;
winy = winx;
}
else {
- x= (winy - winx)/2.0f;
+ x = (winy - winx) / 2.0f;
winx = winy;
}
- target[0]= (x + target[0]) / winx;
- target[1]= (y + target[1]) / winy;
+ target[0] = (x + target[0]) / winx;
+ target[1] = (y + target[1]) / winy;
}
/* 'rotmat' can be obedit->obmat when uv project is used.
- * 'winx' and 'winy' can be from scene->r.xsch/ysch */
-UvCameraInfo *project_camera_info(Object *ob, float (*rotmat)[4], float winx, float winy)
+ * 'winx' and 'winy' can be from scene->r.xsch/ysch */
+UvCameraInfo *project_camera_info(Object *ob, float(*rotmat)[4], float winx, float winy)
{
UvCameraInfo uci;
- Camera *camera= ob->data;
+ Camera *camera = ob->data;
uci.do_pano = (camera->flag & CAM_PANORAMA);
- uci.do_persp = (camera->type==CAM_PERSP);
+ uci.do_persp = (camera->type == CAM_PERSP);
- uci.camangle= focallength_to_fov(camera->lens, camera->sensor_x) / 2.0f;
- uci.camsize= uci.do_persp ? tanf(uci.camangle) : camera->ortho_scale;
+ uci.camangle = focallength_to_fov(camera->lens, camera->sensor_x) / 2.0f;
+ uci.camsize = uci.do_persp ? tanf(uci.camangle) : camera->ortho_scale;
/* account for scaled cameras */
copy_m4_m4(uci.caminv, ob->obmat);
@@ -152,30 +152,30 @@ UvCameraInfo *project_camera_info(Object *ob, float (*rotmat)[4], float winx, fl
UvCameraInfo *uci_pt;
/* normal projection */
- if(rotmat) {
+ if (rotmat) {
copy_m4_m4(uci.rotmat, rotmat);
- uci.do_rotmat= 1;
+ uci.do_rotmat = 1;
}
else {
- uci.do_rotmat= 0;
+ uci.do_rotmat = 0;
}
/* also make aspect ratio adjustment factors */
if (winx > winy) {
- uci.xasp= 1.0f;
- uci.yasp= winx / winy;
+ uci.xasp = 1.0f;
+ uci.yasp = winx / winy;
}
else {
- uci.xasp= winy / winx;
- uci.yasp= 1.0f;
+ uci.xasp = winy / winx;
+ uci.yasp = 1.0f;
}
-
+
/* include 0.5f here to move the UVs into the center */
uci.shiftx = 0.5f - (camera->shiftx * uci.xasp);
uci.shifty = 0.5f - (camera->shifty * uci.yasp);
-
- uci_pt= MEM_mallocN(sizeof(UvCameraInfo), "UvCameraInfo");
- *uci_pt= uci;
+
+ uci_pt = MEM_mallocN(sizeof(UvCameraInfo), "UvCameraInfo");
+ *uci_pt = uci;
return uci_pt;
}
@@ -193,7 +193,6 @@ void project_from_view_ortho(float target[2], float source[3], float rotmat[4][4
target[1] = pv[2];
}
-
void project_camera_info_scale(UvCameraInfo *uci, float scale_x, float scale_y)
{
uci->xasp *= scale_x;