Files
Shrlalgo.RvKits/ShrlAlgoToolkit.RevitAddins/RvIndependent/MetroGauges/LandXMLData/Location.cs
2025-04-24 20:56:10 +08:00

16 lines
337 B
C#

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;
}
}