Lines Matching refs:at

132                          AffineTransform at,
142 strokeTo(src, at, bs, thin, norm, antialias, consumer);
146 AffineTransform at,
156 lw = userSpaceLineWidth(at, 0.5f);
158 lw = userSpaceLineWidth(at, 1.0f);
164 at,
175 private float userSpaceLineWidth(AffineTransform at, float lw) {
179 if ((at.getType() & (AffineTransform.TYPE_GENERAL_TRANSFORM |
181 widthScale = Math.sqrt(at.getDeterminant());
184 double A = at.getScaleX(); // m00
185 double C = at.getShearX(); // m01
186 double B = at.getShearY(); // m10
187 double D = at.getScaleY(); // m11
242 AffineTransform at,
272 if (at != null && !at.isIdentity()) {
273 final double a = at.getScaleX();
274 final double b = at.getShearX();
275 final double c = at.getShearY();
276 final double d = at.getScaleY();
286 // are not there this causes a SIGSEGV in libawt.so (at the time
311 pi = src.getPathIterator(at);
316 // stroker (and maybe dasher) will have the full transform at
320 strokerat = at;
321 pi = src.getPathIterator(at);
323 // by now strokerat == at && outat == null. Input paths to
324 // stroker (and maybe dasher) will have the full transform at
326 // the inverse of *only the non translation part of at* will
328 // in stroker, because, suppose at = T*A, where T is just the
329 // translation part of at, and A is the rest. T*A has already
336 outat = at;
338 // outat == at && strokerat == null. This is because if no
344 // either at is null or it's the identity. In either case
352 // by now, at least one of outat and strokerat will be null. Unless at is not
354 // null. In other cases, outat == at if normalization is off, and if
355 // normalization is on, strokerat == at.
492 * The {@code at} parameter specifies a transform that should affect
521 * @param at the transform to be applied to the shape and the
536 AffineTransform at,
548 pi = new NormalizingPathIterator(s.getPathIterator(at), norm);
550 pi = s.getPathIterator(at);
562 strokeTo(s, at, bs, thin, norm, true, r);