Esempio n. 1
0
        // https://msdn.microsoft.com/en-us/library/system.windows.vector(v=vs.110).aspx


        #endregion

        #region New Methods

        #endregion

        /// <summary>
        /// True: Segments are parallel, on the same line, oriented in the same direction.
        /// </summary>
        /// <param name="vector"></param>
        /// <returns></returns>
        public bool IsColinearSameDirection(NVector vector)
        {
            return(_vector.IsCollinearSameDirection(vector, Tolerance));
        }