Emgu.CV.Structure.LineSegment2DF.LineSegment2DF C# (CSharp) Метод

LineSegment2DF() публичный Метод

Create a line segment with the specific start point and end point
public LineSegment2DF ( PointF p1, PointF p2 ) : System
p1 System.Drawing.PointF The first point on the line segment
p2 System.Drawing.PointF The second point on the line segment
Результат System
        public LineSegment2DF(PointF p1, PointF p2)
        {
            _p1 = p1;
             _p2 = p2;
        }