1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
|
/*
* Grace - GRaphing, Advanced Computation and Exploration of data
*
* Home page: http://plasma-gate.weizmann.ac.il/Grace/
*
* Copyright (c) 1996-2004 Grace Development Team
*
* Maintained by Evgeny Stambulchik
*
*
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* ------------- coordinate transformation routines ------------
*/
#include <config.h>
#include <string.h>
#define ADVANCED_MEMORY_HANDLERS
#include "grace/coreP.h"
typedef struct {
int xscale;
int yscale;
int coordinates;
double xv_med;
double yv_med;
double xv_rc;
double yv_rc;
double fxg_med;
double fyg_med;
} ctrans_data;
static const Quark *get_defining_graph(const Quark *q)
{
if (q && q->fid == QFlavorGraph) {
return q;
} else {
return get_parent_graph(q);
}
}
static Quark *get_defining_quark(const Quark *q)
{
Quark *p = (Quark *) q;
while (p) {
p = quark_parent_get(p);
if (p->fid == QFlavorGraph ||
p->fid == QFlavorFrame ||
p->fid == QFlavorAxis ||
p->fid == QFlavorProject) {
return p;
}
}
return NULL;
}
int object_get_loctype(const Quark *q)
{
Quark *p = get_defining_quark(q);
if (p) {
switch (p->fid) {
case QFlavorGraph:
return COORD_WORLD;
break;
case QFlavorFrame:
case QFlavorAxis:
return COORD_FRAME;
break;
case QFlavorProject:
return COORD_VIEW;
break;
}
}
/* Not reached */
errmsg("internal error in object_get_loctype()");
return COORD_VIEW;
}
static int get_ctrans_data(const Quark *q, ctrans_data *cd)
{
graph *g = graph_get_data(get_defining_graph(q));
if (g && cd) {
if (g->type == GRAPH_POLAR) {
cd->coordinates = COORDINATES_POLAR;
} else {
cd->coordinates = COORDINATES_XY;
}
cd->xscale = g->xscale;
cd->yscale = g->yscale;
cd->xv_med = g->ccache.xv_med;
cd->yv_med = g->ccache.yv_med;
cd->xv_rc = g->ccache.xv_rc;
cd->yv_rc = g->ccache.yv_rc;
cd->fxg_med = g->ccache.fxg_med;
cd->fyg_med = g->ccache.fyg_med;
return RETURN_SUCCESS;
} else {
return RETURN_FAILURE;
}
}
int polar2xy(double phi, double rho, double *x, double *y)
{
if (rho < 0.0) {
return RETURN_FAILURE;
} else {
*x = rho*cos(phi);
*y = rho*sin(phi);
return RETURN_SUCCESS;
}
}
void xy2polar(double x, double y, double *phi, double *rho)
{
*phi = atan2(y, x);
*rho = hypot(x, y);
}
/*
* is_wpoint_inside() checks if point qp is inside of world rectangle w
*/
static int is_wpoint_inside(const WPoint *wp, const world *w)
{
return ((wp->x >= w->xg1) && (wp->x <= w->xg2) &&
(wp->y >= w->yg1) && (wp->y <= w->yg2));
}
/*
* is_validWPoint() checks if a point is inside of (current) world rectangle
*/
int is_validWPoint(const Quark *q, const WPoint *wp)
{
world w;
if (graph_get_world(get_defining_graph(q), &w) != RETURN_SUCCESS) {
return FALSE;
}
return is_wpoint_inside(wp, &w);
}
static int world2view(const Quark *q,
double x, double y, double *xv, double *yv)
{
ctrans_data cd;
if (get_ctrans_data(q, &cd) != RETURN_SUCCESS) {
return RETURN_FAILURE;
}
if (cd.coordinates == COORDINATES_POLAR) {
if (polar2xy(cd.xv_rc*x, cd.yv_rc*y, xv, yv) != RETURN_SUCCESS) {
return (RETURN_FAILURE);
}
*xv += cd.xv_med;
*yv += cd.yv_med;
} else {
*xv = xy_xconv(q, x);
*yv = xy_yconv(q, y);
}
return (RETURN_SUCCESS);
}
/*
* map world co-ordinates to viewport
*/
double xy_xconv(const Quark *q, double wx)
{
ctrans_data cd;
if (get_ctrans_data(q, &cd) != RETURN_SUCCESS) {
return FALSE;
}
if ((cd.xscale == SCALE_LOG && wx <= 0.0) ||
(cd.xscale == SCALE_REC && wx == 0.0) ||
(cd.xscale == SCALE_LOGIT && wx <= 0.0) ||
(cd.xscale == SCALE_LOGIT && wx >= 1.0)){
return 0.0;
} else {
return (cd.xv_med + cd.xv_rc*(fscale(wx, cd.xscale) - cd.fxg_med));
}
}
double xy_yconv(const Quark *q, double wy)
{
ctrans_data cd;
if (get_ctrans_data(q, &cd) != RETURN_SUCCESS) {
return FALSE;
}
if ((cd.yscale == SCALE_LOG && wy <= 0.0) ||
(cd.yscale == SCALE_REC && wy == 0.0) ||
(cd.yscale == SCALE_LOGIT && wy <= 0.0) ||
(cd.yscale == SCALE_LOGIT && wy >= 1.0)) {
return 0.0;
} else {
return (cd.yv_med + cd.yv_rc*(fscale(wy, cd.yscale) - cd.fyg_med));
}
}
/*
* Convert point's world coordinates to viewport
*/
int Wpoint2Vpoint(const Quark *q, const WPoint *wp, VPoint *vp)
{
return world2view(q, wp->x, wp->y, &vp->x, &vp->y);
}
/* check that FPoint is ok */
#define FP_EPSILON 0.01
int is_validFPoint(const FPoint *fp)
{
if (fp->x < 0.0 - FP_EPSILON || fp->x > 1.0 + FP_EPSILON ||
fp->y < 0.0 - FP_EPSILON || fp->y > 1.0 + FP_EPSILON) {
return FALSE;
} else {
return TRUE;
}
}
/*
* Convert point's frame coordinates to viewport
*/
int Fpoint2Vpoint(const Quark *q, const FPoint *fp, VPoint *vp)
{
view v;
if (frame_get_view(q, &v) == RETURN_SUCCESS ||
axis_get_bb(q, &v) == RETURN_SUCCESS) {
vp->x = v.xv1 + (v.xv2 - v.xv1)*fp->x;
vp->y = v.yv1 + (v.yv2 - v.yv1)*fp->y;
return RETURN_SUCCESS;
} else {
return RETURN_FAILURE;
}
}
/*
* Convert point's viewport coordinates to frame coordinates
*/
int Vpoint2Fpoint(const Quark *q, const VPoint *vp, FPoint *fp)
{
view v;
if ((frame_get_view(q, &v) == RETURN_SUCCESS ||
axis_get_bb(q, &v) == RETURN_SUCCESS) &&
v.xv2 != v.xv1 && v.yv2 != v.yv1) {
fp->x = (vp->x - v.xv1)/(v.xv2 - v.xv1);
fp->y = (vp->y - v.yv1)/(v.yv2 - v.yv1);
return RETURN_SUCCESS;
} else {
return RETURN_FAILURE;
}
}
int Apoint2Vpoint(const Quark *q, const APoint *ap, VPoint *vp)
{
Quark *p = get_defining_quark(q);
WPoint wp;
FPoint fp;
if (!p) {
return RETURN_FAILURE;
}
switch (p->fid) {
case QFlavorGraph:
wp.x = ap->x;
wp.y = ap->y;
if (!is_validWPoint(p, &wp)) {
return RETURN_FAILURE;
}
Wpoint2Vpoint(p, &wp, vp);
break;
case QFlavorFrame:
case QFlavorAxis:
fp.x = ap->x;
fp.y = ap->y;
if (!is_validFPoint(&fp)) {
return RETURN_FAILURE;
}
Fpoint2Vpoint(p, &fp, vp);
break;
case QFlavorProject:
vp->x = ap->x;
vp->y = ap->y;
break;
}
return RETURN_SUCCESS;
}
int Vpoint2Apoint(const Quark *q, const VPoint *vp, APoint *ap)
{
Quark *p = get_defining_quark(q);
WPoint wp;
FPoint fp;
if (!p) {
return RETURN_FAILURE;
}
switch (p->fid) {
case QFlavorGraph:
if (Vpoint2Wpoint(p, vp, &wp) != RETURN_SUCCESS) {
return RETURN_FAILURE;
} else {
ap->x = wp.x;
ap->y = wp.y;
}
break;
case QFlavorFrame:
case QFlavorAxis:
if (Vpoint2Fpoint(p, vp, &fp) != RETURN_SUCCESS) {
return RETURN_FAILURE;
} else {
ap->x = fp.x;
ap->y = fp.y;
}
break;
case QFlavorProject:
ap->x = vp->x;
ap->y = vp->y;
break;
}
return RETURN_SUCCESS;
}
/*
* axis scaling
*/
double fscale(double wc, int scale)
{
switch (scale) {
case SCALE_NORMAL:
return (wc);
case SCALE_LOG:
return (log10(wc));
case SCALE_REC:
return (1.0/wc);
case SCALE_LOGIT:
return (log(wc/(1.0 - wc)));
default:
errmsg("internal error in fscale()");
return (wc);
}
}
/*
* inverse of the above
*/
double ifscale(double vc, int scale)
{
switch (scale) {
case SCALE_NORMAL:
return (vc);
case SCALE_LOG:
return (pow(10.0, vc));
case SCALE_REC:
return (1.0/vc);
case SCALE_LOGIT:
return (exp(vc)/(1.0 + exp(vc)));
default:
errmsg("internal error in ifscale()");
return (vc);
}
}
/*
* Convert point's viewport coordinates to world ones
*/
int Vpoint2Wpoint(const Quark *q, const VPoint *vp, WPoint *wp)
{
ctrans_data cd;
if (get_ctrans_data(q, &cd) != RETURN_SUCCESS) {
return RETURN_FAILURE;
}
if (cd.coordinates == COORDINATES_POLAR) {
xy2polar(vp->x - cd.xv_med, vp->y - cd.yv_med, &wp->x, &wp->y);
wp->x /= cd.xv_rc;
wp->y /= cd.yv_rc;
} else {
wp->x = ifscale(cd.fxg_med + (1.0/cd.xv_rc)*(vp->x - cd.xv_med),
cd.xscale);
wp->y = ifscale(cd.fyg_med + (1.0/cd.yv_rc)*(vp->y - cd.yv_med),
cd.yscale);
}
return RETURN_SUCCESS;
}
/* updates coordinate transform cached values */
int update_graph_ccache(Quark *gr)
{
graph *g = graph_get_data(gr);
view v;
int ctrans_type, xyfixed;
if (!g || frame_get_view(get_parent_frame(gr), &v) != RETURN_SUCCESS) {
return RETURN_FAILURE;
}
switch (g->type) {
case GRAPH_POLAR:
ctrans_type = COORDINATES_POLAR;
xyfixed = FALSE;
break;
case GRAPH_FIXED:
ctrans_type = COORDINATES_XY;
xyfixed = TRUE;
break;
default:
ctrans_type = COORDINATES_XY;
xyfixed = FALSE;
break;
}
switch (ctrans_type) {
case COORDINATES_POLAR:
g->ccache.xv_med = (v.xv1 + v.xv2)/2;
if (g->xinvert == FALSE) {
g->ccache.xv_rc = +1.0;
} else {
g->ccache.xv_rc = -1.0;
}
g->ccache.yv_med = (v.yv1 + v.yv2)/2;
g->ccache.yv_rc = (MIN2(v.xv2 - v.xv1, v.yv2 - v.yv1)/2.0)/g->w.yg2;
break;
case COORDINATES_XY:
if (xyfixed) {
g->ccache.xv_med = (v.xv1 + v.xv2)/2;
g->ccache.fxg_med = (g->w.xg1 + g->w.xg2)/2;
g->ccache.yv_med = (v.yv1 + v.yv2)/2;
g->ccache.fyg_med = (g->w.yg1 + g->w.yg2)/2;
g->ccache.xv_rc = MIN2((v.xv2 - v.xv1)/(g->w.xg2 - g->w.xg1),
(v.yv2 - v.yv1)/(g->w.yg2 - g->w.yg1));
g->ccache.yv_rc = g->ccache.xv_rc;
if (g->xinvert == TRUE) {
g->ccache.xv_rc = -g->ccache.xv_rc;
}
if (g->yinvert == TRUE) {
g->ccache.yv_rc = -g->ccache.yv_rc;
}
} else {
g->ccache.xv_med = (v.xv1 + v.xv2)/2;
g->ccache.fxg_med =
(fscale(g->w.xg1, g->xscale) + fscale(g->w.xg2, g->xscale))/2;
if (g->xinvert == FALSE) {
g->ccache.xv_rc = (v.xv2 - v.xv1)/
(fscale(g->w.xg2, g->xscale) - fscale(g->w.xg1, g->xscale));
} else {
g->ccache.xv_rc = - (v.xv2 - v.xv1)/
(fscale(g->w.xg2, g->xscale) - fscale(g->w.xg1, g->xscale));
}
g->ccache.yv_med = (v.yv1 + v.yv2)/2;
g->ccache.fyg_med =
(fscale(g->w.yg1, g->yscale) + fscale(g->w.yg2, g->yscale))/2;
if (g->yinvert == FALSE) {
g->ccache.yv_rc = (v.yv2 - v.yv1)/
(fscale(g->w.yg2, g->yscale) - fscale(g->w.yg1, g->yscale));
} else {
g->ccache.yv_rc = - (v.yv2 - v.yv1)/
(fscale(g->w.yg2, g->yscale) - fscale(g->w.yg1, g->yscale));
}
}
break;
default:
errmsg("internal error in update_graph_ccache()");
break;
}
return RETURN_SUCCESS;
}
|