ExpandBounds() public méthode

public ExpandBounds ( List points ) : void
points List
Résultat void
Exemple #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);
 }
Exemple #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);
 }
Exemple #3
0
 public void ExpandBounds(SVGGraphicsPath path)
 {
     path.ExpandBounds(p, r1, r2);
 }
Exemple #4
0
 public void ExpandBounds(SVGGraphicsPath path)
 {
     int r = (int) r1 + (int) r2;
     path.ExpandBounds(point, r, r);
 }
Exemple #5
0
 public void ExpandBounds(SVGGraphicsPath path)
 {
     path.ExpandBounds(p1);
     path.ExpandBounds(p);
 }
 public void ExpandBounds(SVGGraphicsPath path)
 {
     path.ExpandBounds(points);
 }
Exemple #7
0
    public void ExpandBounds(SVGGraphicsPath path)
    {
        int r = (int)r1 + (int)r2;

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