diff --git a/ChangeLog b/ChangeLog index dbca427..7777c48 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-12-30 Fred Kiefer + + * Source/art/path.m (-DPSrectstroke::::, + -_axis_rectangle::::vpath:axis::::pixel:): Adopted to change in + NSAffineTransform.h. + 2003-12-28 Fred Kiefer * Source/win32/WIN32Server.m (initWithAttributes:): Adjusted diff --git a/Source/art/path.m b/Source/art/path.m index 428501f..5f60cb7 100644 --- a/Source/art/path.m +++ b/Source/art/path.m @@ -390,8 +390,8 @@ within one pixel.) */ matrix[1]=-ctm->matrix.m12; matrix[2]= ctm->matrix.m21; matrix[3]=-ctm->matrix.m22; - matrix[4]= ctm->matrix.tx; - matrix[5]=-ctm->matrix.ty + wi->sy; + matrix[4]= ctm->matrix.tX; + matrix[5]=-ctm->matrix.tY + wi->sy; /* If the matrix is 'inverted', ie. if the determinant is negative, we need to flip the order of the vertices. Since it's a rectangle @@ -1128,8 +1128,8 @@ static void clip_svp_callback(void *data, int y, int start, matrix[1] =-ctm->matrix.m12; matrix[2] = ctm->matrix.m21; matrix[3] =-ctm->matrix.m22; - matrix[4] = ctm->matrix.tx; - matrix[5] =-ctm->matrix.ty + wi->sy; + matrix[4] = ctm->matrix.tX; + matrix[5] =-ctm->matrix.tY + wi->sy; vp2 = art_vpath_affine_transform(vp, matrix); art_free(vp);