ExpandBounds() public method

public ExpandBounds ( List points ) : void
points List
return void
Example #1
0
 public void ExpandBounds(SVGGraphicsPath path)
 {
     path.ExpandBounds(x, y);
     path.ExpandBounds(x + width, y);
     path.ExpandBounds(x + width, y + height);
     path.ExpandBounds(x, y + height);
 }
Example #2
0
 public void ExpandBounds(SVGGraphicsPath path)
 {
     path.ExpandBounds(x, y);
     path.ExpandBounds(x + width, y);
     path.ExpandBounds(x + width, y + height);
     path.ExpandBounds(x, y + height);
 }
Example #3
0
 public void ExpandBounds(SVGGraphicsPath path)
 {
     path.ExpandBounds(p, r1, r2);
 }
Example #4
0
 public void ExpandBounds(SVGGraphicsPath path)
 {
     int r = (int) r1 + (int) r2;
     path.ExpandBounds(point, r, r);
 }
Example #5
0
 public void ExpandBounds(SVGGraphicsPath path)
 {
     path.ExpandBounds(p1);
     path.ExpandBounds(p);
 }
Example #6
0
 public void ExpandBounds(SVGGraphicsPath path)
 {
     path.ExpandBounds(points);
 }
Example #7
0
    public void ExpandBounds(SVGGraphicsPath path)
    {
        int r = (int)r1 + (int)r2;

        path.ExpandBounds(point, r, r);
    }
Example #8
0
 public void ExpandBounds(SVGGraphicsPath path)
 {
     path.ExpandBounds(points);
 }
Example #9
0
 public void ExpandBounds(SVGGraphicsPath path)
 {
     path.ExpandBounds(p1);
     path.ExpandBounds(p);
 }
Example #10
0
 public void ExpandBounds(SVGGraphicsPath path)
 {
     path.ExpandBounds(p, r1, r2);
 }