ExpandBounds() 공개 메소드

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

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