Home | History | Annotate | Download | only in pdfwindow

Lines Matching refs:csAP

21 	CFX_ByteTextBuf csAP;
28 csAP << pPathData[i].point.x << " " << pPathData[i].point.y << " m\n";
31 csAP << pPathData[i].point.x << " " << pPathData[i].point.y << " l\n";
34 csAP << pPathData[i].point.x << " " << pPathData[i].point.y << " "
45 return csAP.GetByteString();
141 CFX_ByteTextBuf csAP;
200 csAP << pts[0].x << " " << pts[0].y << " m\n";
214 csAP << pts[nCur].x + px1 * PWL_BEZIER << " " << pts[nCur].y + py1 * PWL_BEZIER << " "
219 return csAP.GetByteString();
224 CFX_ByteTextBuf csAP;
234 csAP << pt1.x << " " << pt1.y << " m\n";
239 csAP << pt1.x << " " << pt1.y + py * PWL_BEZIER << " "
246 csAP << pt2.x + px * PWL_BEZIER << " " << pt2.y << " "
253 csAP << pt3.x << " " << pt3.y - py * PWL_BEZIER << " "
260 csAP << pt4.x - px * PWL_BEZIER << " " << pt4.y << " "
264 return csAP.GetByteString();
269 CFX_ByteTextBuf csAP;
271 csAP << crBBox.left << " " << crBBox.top << " m\n";
272 csAP << crBBox.right << " " << crBBox.bottom << " l\n";
273 csAP << crBBox.left << " " << crBBox.bottom << " m\n";
274 csAP << crBBox.right << " " << crBBox.top << " l\n";
276 return csAP.GetByteString();
281 CFX_ByteTextBuf csAP;
291 csAP << pt1.x << " " << pt1.y << " m\n";
292 csAP << pt2.x << " " << pt2.y << " l\n";
293 csAP << pt3.x << " " << pt3.y << " l\n";
294 csAP << pt4.x << " " << pt4.y << " l\n";
295 csAP << pt1.x << " " << pt1.y << " l\n";
297 return csAP.GetByteString();
302 CFX_ByteTextBuf csAP;
304 csAP << crBBox.left << " " << crBBox.top << " m\n";
305 csAP << crBBox.right << " " << crBBox.top << " l\n";
306 csAP << crBBox.right << " " << crBBox.bottom << " l\n";
307 csAP << crBBox.left << " " << crBBox.bottom << " l\n";
308 csAP << crBBox.left << " " << crBBox.top << " l\n";
310 return csAP.GetByteString();
315 CFX_ByteTextBuf csAP;
332 csAP << px[0] << " " << py[0] << " m\n";
339 csAP << px[nNext] << " " << py[nNext] << " l\n";
342 return csAP.GetByteString();
347 CFX_ByteTextBuf csAP;
358 csAP << cos(fRotate) << " " << sin(fRotate) << " " << -sin(fRotate) << " " << cos(fRotate) << " "
362 csAP << pt1.x << " " << pt1.y << " m\n";
367 csAP << pt1.x << " " << pt1.y + py * PWL_BEZIER << " "
374 csAP << pt2.x + px * PWL_BEZIER << " " << pt2.y << " "
378 return csAP.GetByteString();