示例#1
0
 /// <summary>
 /// Create a triangle using the specific vertices
 /// </summary>
 /// <param name="v0">The first vertex</param>
 /// <param name="v1">The second vertex</param>
 /// <param name="v2">The third vertex</param>
 public Triangle3DF(MCvPoint3D32f v0, MCvPoint3D32f v1, MCvPoint3D32f v2)
 {
     _v0 = v0;
     _v1 = v1;
     _v2 = v2;
 }
示例#2
0
 /// <summary>
 /// Create a line segment with the specific start point and end point
 /// </summary>
 /// <param name="p1">The first point on the line segment</param>
 /// <param name="p2">The second point on the line segment</param>
 public LineSegment3DF(MCvPoint3D32f p1, MCvPoint3D32f p2)
 {
     _p1 = p1;
     _p2 = p2;
 }