Merge "[Telephony] Sample App implementation."
[platform/core/csapi/tizenfx.git] / test / ElmSharp.Test / TC / PolygonTest1.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 using System;
18 using ElmSharp;
19
20 namespace ElmSharp.Test
21 {
22     class PolygonTest1 : TestCaseBase
23     {
24         public override string TestName => "PolygonTest1";
25         public override string TestDescription => "To test basic operation of Polygon";
26
27         public override void Run(Window window)
28         {
29             Background bg = new Background(window);
30             bg.Color = Color.White;
31             bg.Move(0, 0);
32             bg.Resize(window.ScreenSize.Width, window.ScreenSize.Height);
33             bg.Show();
34
35             Polygon triangle1 = new Polygon(window);
36             triangle1.Color = Color.Blue;
37             triangle1.AddPoint(100, 100);
38             triangle1.AddPoint(100, 500);
39             triangle1.AddPoint(500, 500);
40             triangle1.Show();
41
42             Polygon triange2 = new Polygon(window);
43             triange2.AddPoint(300, 300);
44             triange2.AddPoint(new Point{X=600, Y=300});
45             triange2.AddPoint(new Point{X=600, Y=600});
46             triange2.Color = Color.Green;
47             triange2.Show();
48
49             Polygon hexagon = new Polygon(window);
50             hexagon.Color = Color.Pink;
51             hexagon.AddPoint(0, 0);
52             hexagon.AddPoint(700, 0);
53             hexagon.ClearPoints();
54             for (double a=0; a < 2 * Math.PI; a += Math.PI / 3)
55             {
56                 hexagon.AddPoint(
57                     300 + (int)(120 * Math.Sin(a)),
58                     580 + (int)(120 * Math.Cos(a))
59                 );
60             }
61             hexagon.Show();
62         }
63
64     }
65 }