예제 #1
0
 public Cylinder(Circle a)
 {
     x = a.x;
     y = a.y;
     radius = a.radius;
     height = 1.0;
 }
예제 #2
0
 public Cylinder(Circle a)
 {
     x = a.x;
     y = a.y;
     Radius = a.Radius;
     Height = 1;
 }
예제 #3
0
파일: Circle.cs 프로젝트: Taksaporn/week-4
 public Circle(Circle c)
     : base(c.x,c.y)
 {
     // x = c.x;
        // y = c.y;
     radius = c.radius;
 }
예제 #4
0
 public Cylinder(Circle c)
     : base(c.x,c.y,c.Radius)
 {
     height = 1;
     //x = c.x;
     //y = c.y;
     //Radius = c.Radius;
 }
예제 #5
0
파일: Program.cs 프로젝트: Taksaporn/week-4
        static void Main(string[] args)
        {
            // Test Program for Lab401
            Circle c1 = new Circle(), c2 = new Circle(1.5, 5.0, 2), c3 = new Circle(c2);
            Console.WriteLine(c1 + "\n" + c2 + "\n" + c3);

            Cylinder cl1 = new Cylinder(), cl2 = new Cylinder(c3), cl3 = new Cylinder(1, 1, 3, 4);
            Cylinder cl4 = new Cylinder(cl3);
            Console.WriteLine(cl1 + "\n" + cl2 + "\n" + cl3 + "\n" + cl4);
        }
예제 #6
0
파일: Cylinder.cs 프로젝트: babymilo/week-4
 public Cylinder(Circle c)
     : base(c.X, c.Y, c.Radius)
 {
     _height = 1;
 }
예제 #7
0
 public Cylinder(Circle c)
     : base(c)
 {
     Height = 1.0;
 }
예제 #8
0
 public Circle(Circle C)
 {
     radius = C.radius;
     x = C.x;
     y = C.y;
 }
예제 #9
0
 public Cylinder(Circle c)
     : base(c)
 {
     this.Height = 1;
 }
예제 #10
0
파일: Circle.cs 프로젝트: nutisne2/week-4
 public Circle(Circle c)
     : base(c.x, c.y)
 {
     _radius = c.radius;
 }
예제 #11
0
 public Circle(Circle C)
 {
     this.Radius = C.Radius;
     x = C.x;
     y = C.y;
 }
예제 #12
0
 public Circle(Circle v)
     : base(v.x,v.y)
 {
     radius = v.radius;
 }
예제 #13
0
 public Cylinder(Circle g)
     : base(g.x,g.y,g.radius)
 {
     heigh = 1;
 }
예제 #14
0
 public Circle(Circle c)
 {
     C = new Point(c.C);
     R = c.R;
 }
예제 #15
0
 public Cylinder(Circle a)
     : base(a.X, a.Y, a.Radius)
 {
     this.height = 1;
 }
예제 #16
0
파일: Circle.cs 프로젝트: naraedza/week-4
 public Circle(Circle c)
     : base(c.X, c.Y)
 {
     _radius = c.radius;
 }
예제 #17
0
 public Circle(Circle a)
 {
     x = a.x;
     y = a.y;
     Radius = a.Radius;
 }
예제 #18
0
 public Cylinder(Circle cir)
 {
     C = new Point(cir.C);
     R = cir.R;
     H = 1.0;
 }
예제 #19
0
 public Cylinder(Circle c)
     : base(c.x, c.y, c.radius)
 {
     height = 1.0;
 }
예제 #20
0
 public Circle(Circle c)
 {
     this.A = c.A;
     this.B = c.B;
     Radius = c.Radius;
 }
예제 #21
0
 public Cylinder(Circle a)
     : base(a.x,a.y,a.Radius)
 {
     height = 1.0;
 }
예제 #22
0
 public Cylinder(Circle a) : base(a.X, a.Y, a.Radius)
 {
     height = 1;
 }
예제 #23
0
파일: Circle.cs 프로젝트: necklecez/week-4
 public Circle(Circle a)
     : base(a.x,a.y)
 {
     this.Radius = a.Radius;
     //Center = a.Center;
 }
예제 #24
0
 public Circle(Circle c)
 {
     radius = c.Radius;
     base.X = c.X;
     base.Y = c.Y;
 }
예제 #25
0
파일: Circle.cs 프로젝트: JJanjao/week-5
 public Circle(Circle c)
     : base(c.X,c.Y)
 {
     radius = c.Radius;
 }
예제 #26
0
 public Cylinder(Circle c)
 {
     base.setCircle(c.A, c.B, c.Radius);
     this.Hight = 1.0;
 }
예제 #27
0
파일: Cylinder.cs 프로젝트: JJanjao/week-5
 public Cylinder(Circle c)
     : base(c)
 {
     height = 1;
 }
예제 #28
0
 public Cylinder(Circle cir)
 {
     C = new Point(cir.C);
     R = cir.R;
     H = 1.0;
 }