home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1996 February
/
PCWK0296.iso
/
sharewar
/
dos
/
program
/
gs300sr1
/
gs300sr1.exe
/
GXMATRIX.H
< prev
next >
Wrap
C/C++ Source or Header
|
1994-07-27
|
3KB
|
76 lines
/* Copyright (C) 1989, 1990, 1992, 1993 Aladdin Enterprises. All rights reserved.
This file is part of Aladdin Ghostscript.
Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author
or distributor accepts any responsibility for the consequences of using it,
or for whether it serves any particular purpose or works at all, unless he
or she says so in writing. Refer to the Aladdin Ghostscript Free Public
License (the "License") for full details.
Every copy of Aladdin Ghostscript must include a copy of the License,
normally in a plain ASCII text file named PUBLIC. The License grants you
the right to copy, modify and redistribute Aladdin Ghostscript, but only
under certain conditions described in the License. Among other things, the
License requires that the copyright notice and this notice be preserved on
all copies.
*/
/* gxmatrix.h */
/* Internal matrix routines for Ghostscript library */
#ifndef gxmatrix_INCLUDED
# define gxmatrix_INCLUDED
#include "gsmatrix.h"
/* A matrix with a cached fixed-point copy of the translation. */
/* This is only used by a few routines; they are responsible */
/* for ensuring the validity of the cache */
/* (by calling gs_update_matrix_fixed). */
typedef struct gs_matrix_fixed_s {
_matrix_body;
fixed tx_fixed, ty_fixed;
} gs_matrix_fixed;
void gs_update_matrix_fixed(P1(gs_matrix_fixed *));
/* Coordinate transformations to fixed point. */
int gs_point_transform2fixed(P4(const gs_matrix_fixed *, floatp, floatp, gs_fixed_point *)),
gs_distance_transform2fixed(P4(const gs_matrix_fixed *, floatp, floatp, gs_fixed_point *));
/* Macro for testing whether matrix coefficients are zero, */
/* for shortcuts when the matrix has no skew. */
#define is_skewed(pmat) !is_fzero2((pmat)->xy, (pmat)->yx)
/*
* Define the fixed-point coefficient structure for avoiding
* floating point in coordinate transformations.
* Currently this is used only by the Type 1 font interpreter.
* The setup is in gscoord.c.
*/
typedef struct {
long l;
fixed f;
} coeff1;
typedef struct {
coeff1 xx, xy, yx, yy;
int skewed;
int shift; /* see m_fixed */
int max_bits; /* max bits of coefficient */
fixed round; /* ditto */
} fixed_coeff;
/*
* Multiply a fixed whose integer part usually does not exceed max_bits
* in magnitude by a coefficient from a fixed_coeff.
* We can use a faster algorithm if the fixed is an integer within
* a range that doesn't cause the multiplication to overflow an int.
*/
#define m_fixed(v, c, fc, maxb)\
(((v) + (fixed_1 << (maxb - 1))) &\
((-fixed_1 << maxb) | _fixed_fraction_v) ? /* out of range, or has fraction */\
(fixed2int_var(v) * (fc).c.f +\
arith_rshift(fixed_fraction(v) * (fc).c.f + fixed_half, _fixed_shift)) :\
arith_rshift(fixed2int_var(v) * (fc).c.l + (fc).round, (fc).shift))
#endif /* gxmatrix_INCLUDED */