LineSegment3dSet(Point3d,
Point3d) Method
 | 
Specifies points for this line segment.
Namespace: Teigha.Geometry
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
24.2.0.0
Syntax
 
public void Set(
        Point3d point1,
        Point3d point2
)
 
Public Sub Set ( 
        point1 As Point3d,
        point2 As Point3d
)
 
public:
void Set(
        Point3d point1, 
        Point3d point2
)
 
member Set : 
        point1 : Point3d * 
        point2 : Point3d -> unit 
 
 
 
Parameters
- point1  Point3d
 
- [in] First point that represents the start of a segment.
 
- point2  Point3d
 
- [in] Second point that represents an end of a segment.
 
 
See Also