1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
| using System;
|
| namespace CalcVolServe.Models
| {
| public class Point
| {
| private double x;
|
| private double y;
|
| private double z;
|
| public Point()
| {
| }
|
| public Point(double x, double y, double z)
| {
| this.x = x;
| this.y = y;
| this.z = z;
| }
|
|
| public double X
| {
| set
| {
| this.x = value;
| }
| get
| {
| return this.x;
| }
| }
|
| public double Y
| {
| set
| {
| this.y = value;
| }
| get
| {
| return this.y;
| }
| }
|
| public double Z
| {
| set
| {
| this.z = value;
| }
| get
| {
| return this.z;
| }
| }
|
| public double Z1 { get; set; }
|
| public double Z2 { get; set; }
| }
| }
|
|