Questions tagged [graphicspath]

96 questions
0
votes
1 answer

How to use Clipper library to enlarge and fill paths

I am trying to use the Clipper library to modify a graphics path. I have list of widths that represent outlines / strokes. I want to start with the largest first and work my way down to the smallest. For this example, we will add 2 strokes with…
Lonnie
  • 63
  • 5
0
votes
2 answers

Matrix and graphicspath

I enlarged a graphicspath using matrix. How can I set that the new path would be exactly over the smaller one and not at the side of it? like the Inflate with rectangles.
John
  • 2,015
  • 5
  • 23
  • 37
0
votes
1 answer

Working with zoomed GraphicsPath is really slow

Do you have any idea how Graphics object using resources? I am drawing several thousands GraphicsPath objects with latitude longitude coordinate on a Panel. Initially those Graphicspaths has to be zoomed (transformed - 4 matrix transformation…
0
votes
2 answers

Convert Region to GraphicsPath

I use Region for finding intersection of two paths (which created from two polygons). GraphicsPath gp1 = new GraphicsPath(); gp1.AddPolygon(P);//P - array of points [first polygon] Region d = new Region(gp1); GraphicsPath gp2 = new…
Wolfgang
  • 254
  • 1
  • 5
  • 12
-1
votes
1 answer

Is List possible in C#?

I'm trying to use a list of GraphicsPath instead of an array as I don't know the number of the paths that will be created by user. List PathDB = new List(); After this I fill the List as follows: using(GraphicsPath…
Kory
  • 3
  • 2
-2
votes
1 answer

GraphicsPath start point

Can the start point of a graphics be set?, say when i'm adding a string to a path then drawing that path the start point usually differ, so is there a way to set the start point?? also is there any way to read AI or SVG files using VB.net? Thank…
1 2 3 4 5 6
7