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

16 lines
349 B
C#

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