lixiaojun
9 天以前 e3480050ec8569769745bb545df2b3ddb2c80d0f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace Yw.WpfUI.Hydro
{
    /// <summary>
    /// 
    /// </summary>
    internal static class Vector3DExtensions
    {
        /// <summary>
        /// 
        /// </summary>
        public static PointL3d ToPointL3d(this Vector3D pt)
        {
            return new PointL3d(pt.X, pt.Y, pt.Z);
        }
    }
}