lixiaojun
2024-09-19 1062dfc5f3d522a880e54d94eb87478c08013c96
Service/HStation.Service.Revit.Core/02-parter/00-core/RevitPosition.cs
@@ -29,12 +29,13 @@
        /// <param name="rhs"></param>
        public RevitPosition(RevitPosition rhs)
        {
            this.X = rhs.X;
            this.Y = rhs.Y;
            this.Z = rhs.Z;
            if (rhs != null)
            {
                this.X = rhs.X;
                this.Y = rhs.Y;
                this.Z = rhs.Z;
            }
        }
        /// <summary>
        /// X
@@ -51,4 +52,6 @@
        /// </summary>
        public double Z { get; set; }
    }
}