Files
ShrlAlgoToolkit/ShrlAlgo.RvKits/RvIndependent/MetroGauges/LandXMLData/Location.cs

16 lines
337 B
C#
Raw Normal View History

using System.Xml.Serialization;
namespace ShrlAlgo.RvKits.RvIndependent.MetroGauges.LandXMLData
{
[XmlType("Location")]
[Serializable]
public class Location : Point3D
{
[XmlAttribute("Phi")]
public double RotationPlane;
[XmlAttribute("Theta")]
public double RotationVertical;
}
}