Ejemplo n.º 1
0
        /// <summary>
        /// 指定した点と直線の距離を返す
        /// </summary>
        /// <param name="point"></param>
#else
        /// <summary>
        /// Returns the distance between this line and the specified point
        /// </summary>
        /// <param name="point"></param>
#endif
        public double Distance(CvPoint3D32f point)
        {
            return(Distance(point.X, point.Y, point.Z));
        }
Ejemplo n.º 2
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="point"></param>
#else
        /// <summary>
        ///
        /// </summary>
        /// <param name="point"></param>
#endif
        public CvPoint3D64f PerpendicularFoot(CvPoint3D32f point)
        {
            return(PerpendicularFoot(point.X, point.Y, point.Z));
        }