Uses of Class
com.aspose.html.dom.canvas.Path2D

  • Packages that use Path2D 
    Package Description
    com.aspose.html.dom.canvas  
    • Uses of Path2D in com.aspose.html.dom.canvas

      Methods in com.aspose.html.dom.canvas with parameters of type Path2D 
      Modifier and Type Method and Description
      void Path2D.addPath(Path2D path, SVGMatrix transformation)
      Adds to the path the path given by the argument.
      void ICanvasRenderingContext2D.clip(Path2D path, int fillRule)
      Creates a new clipping region by calculating the intersection of the current clipping region and the area described by the path, using the non-zero winding number rule.
      void ICanvasRenderingContext2D.fill(Path2D path)
      Fills the subpaths with the current fill style and default algorithm CanvasFillRule.Nonzero.
      void ICanvasRenderingContext2D.fill(Path2D path, int fillRule)
      Fills the subpaths with the current fill style.
      boolean ICanvasRenderingContext2D.isPointInPath(Path2D path, double x, double y, int fillRule)
      Reports whether or not the specified point is contained in the current path.
      boolean ICanvasRenderingContext2D.isPointInStroke(Path2D path, double x, double y)
      Reports whether or not the specified point is inside the area contained by the stroking of a path.
      void ICanvasRenderingContext2D.stroke(Path2D path)
      Strokes the subpaths with the current stroke style.
      Constructors in com.aspose.html.dom.canvas with parameters of type Path2D 
      Constructor and Description
      Path2D(Path2D path)
      returns a newly instantiated Path2D object with another path as an argument (creates a copy)