forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPoint3D.cs
110 lines (97 loc) · 2.35 KB
/
Point3D.cs
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
using System;
using System.Collections.Generic;
using System.Text;
using Core.Utils;
namespace Core.Geometry
{
public class Point3D
{
public Point3D()
{ }
public Point3D(double x, double y, double z)
{
m_X = x;
m_Y = y;
m_Z = z;
}
public Point3D(float x, float y, float z)
{
m_X = (double)x;
m_Y = (double)y;
m_Z = (double)z;
}
public Point3D(Point3D xyz)
{
m_X = xyz.m_X;
m_Y = xyz.m_Y;
m_Z = xyz.m_Z;
}
public Point3D(double x, double y)
{
m_X = x;
m_Y = y;
m_Z = 0;
}
private double m_X;
public double X
{
get
{
return m_X;
}
set
{
m_X = value;
}
}
private double m_Y;
public double Y
{
get
{
return m_Y;
}
set
{
m_Y = value;
}
}
private double m_Z;
public double Z
{
get
{
return m_Z;
}
set
{
m_Z = value;
}
}
public virtual string Serialize()
{
return m_X.ToString(new System.Globalization.CultureInfo("en-US")) + "," + m_Y.ToString(new System.Globalization.CultureInfo("en-US")) + "," + m_Z.ToString(new System.Globalization.CultureInfo("en-US"));
}
public virtual void Deserialize(string str)
{
List<string> bits = StringUtils.SplitToList(str, ",");
m_X = Convert.ToDouble(bits[0]);
m_Y = Convert.ToDouble(bits[1]);
m_Z = Convert.ToDouble(bits[2]);
}
public static Point3D MakePointFromStr(string str)
{
Point3D ans = new Point3D();
ans.Deserialize(str);
return ans;
}
public bool SameCoordsAs(Point3D point3D)
{
return m_X == point3D.m_X && m_Y == point3D.m_Y && m_Z == point3D.m_Z;
}
public override string ToString()
{
return "[Point3D: " + Serialize() + "]";
}
}
}