Example #1
0
        /// <summary>
        /// Slant Range.
        /// </summary>
        public double SlantRange(CGeoLatLong Other)
        {
            C3DPoint ptThis = new C3DPoint();

            Geocentric(ptThis);

            C3DPoint ptOther = new C3DPoint();

            Other.Geocentric(ptOther);

            return(ptThis.Distance(ptOther));
        }
        /// <summary>
        /// Slant Range.
        /// </summary>
        public double SlantRange(CGeoLatLong Other)
        {
            C3DPoint ptThis = new C3DPoint();

            Geocentric(ptThis);

            C3DPoint ptOther = new C3DPoint();

            Other.Geocentric(ptOther);

            return ptThis.Distance(ptOther);
        }