Examples of createStrokedShape()


Examples of java.awt.Stroke.createStrokedShape()

        Paint  paint  = tpi.strokePaint;
        if ((stroke != null) && (paint != null)) {
            if (outline == null)
                outline = getOutline();
            Rectangle2D strokeBounds
                = stroke.createStrokedShape(outline).getBounds2D();
            if (bounds2D == null)
                bounds2D = strokeBounds;
            else
                bounds2D = bounds2D.createUnion(strokeBounds);
        }
View Full Code Here

Examples of java.awt.Stroke.createStrokedShape()

        Stroke overlineStroke =
            new BasicStroke(overlineThickness);
        Rectangle2D logicalBounds = gv.getLogicalBounds();

        return overlineStroke.createStrokedShape(
                           new java.awt.geom.Line2D.Double(
                           logicalBounds.getMinX() + overlineThickness/2.0, offset.getY()+y,
                           logicalBounds.getMaxX() - overlineThickness/2.0, offset.getY()+y));
    }
View Full Code Here

Examples of java.awt.Stroke.createStrokedShape()

            Element svgShape = shapeConverter.toSVG(s);
            if (svgShape != null) {
                domGroupManager.addElement(svgShape, DOMGroupManager.DRAW);
            }
        } else {
            Shape strokedShape = stroke.createStrokedShape(s);
            fill(strokedShape);
        }
    }

View Full Code Here

Examples of java.awt.Stroke.createStrokedShape()

        Float dy = (Float) aci.getAttribute(DY);
        if (dy != null)
            y += dy.floatValue();

        Rectangle2D logicalBounds = gv.getLogicalBounds();
        return strikethroughStroke.createStrokedShape(
                           new java.awt.geom.Line2D.Double(
                           logicalBounds.getMinX() + strikethroughThickness/2.0, offset.getY()+y,
                           logicalBounds.getMaxX() - strikethroughThickness/2.0, offset.getY()+y));
    }
View Full Code Here

Examples of java.awt.Stroke.createStrokedShape()

          Rectangle bounds = handler.getBounds();
          Stroke stroke = handler.getSelectionStroke();

          if (stroke != null)
          {
            bounds = stroke.createStrokedShape(bounds).getBounds();
          }

          if (handleBounds == null)
          {
            handleBounds = bounds;
View Full Code Here

Examples of java.awt.Stroke.createStrokedShape()

            p.quadTo(30, 10, 85, 15);

            Stroke str = new BasicStroke(35, BasicStroke.CAP_BUTT,
                    BasicStroke.JOIN_ROUND);

            Shape s = str.createStrokedShape(p);
            AffineTransform at = new AffineTransform();
            at.translate(5, 25);

            Area area = new Area(s);
            s = at.createTransformedShape(s);
View Full Code Here

Examples of java.awt.Stroke.createStrokedShape()

         * being created each time, but it would normally be created
         * only once.
         */
        public Rectangle2D getBounds() {
            Stroke s = new BasicStroke(1.0f);
            return s.createStrokedShape(_bounds).getBounds2D();
        }

        /** Get the shape of this figure. In this example, it's
         * just the bounding rectangle that we stored in the
         * constructor. Note that in general, figures assume
View Full Code Here

Examples of java.awt.Stroke.createStrokedShape()

      canvas.getGraphics().setPaint(null);
      Color strokeColor = getStrokeColor(canvas, state);
      canvas.getGraphics().setColor(strokeColor);
      Stroke stroke = canvas.createStroke(style);
      canvas.getGraphics().setStroke(stroke);
      outlineShape = new Area(stroke.createStrokedShape(outline));
      if (strokeColor != null) {
        canvas.getGraphics().draw(outline);
      }
    }
  }
View Full Code Here

Examples of java.awt.Stroke.createStrokedShape()

            if (stroke != null && strokePaint != null) {
                // this textRun is stroked
                Shape textRunOutline =
        textRunLayout.getOutline();
                textRunStrokeOutline =
        stroke.createStrokedShape(textRunOutline);
            }

            if (textRunStrokeOutline != null) {
                if (outline == null) {
                    outline = new GeneralPath(textRunStrokeOutline);
View Full Code Here

Examples of java.awt.Stroke.createStrokedShape()

        Stroke overlineStroke =
            new BasicStroke(overlineThickness);
        Rectangle2D logicalBounds = gv.getLogicalBounds();

        return overlineStroke.createStrokedShape(
                           new java.awt.geom.Line2D.Double(
                           logicalBounds.getMinX() + overlineThickness/2.0, offset.getY()+y,
                           logicalBounds.getMaxX() - overlineThickness/2.0, offset.getY()+y));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.