|
InfiniteLine2 Constructor (Double, Double, Double, Double)
|
Initializes a new instance of the
InfiniteLine2 class.
Create a straight line from cartesian coordinates of two points.
Namespace:
Karamba.Geometry
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic InfiniteLine2(
double x1,
double y1,
double x2,
double y2
)
Public Sub New (
x1 As Double,
y1 As Double,
x2 As Double,
y2 As Double
)
public:
InfiniteLine2(
double x1,
double y1,
double x2,
double y2
)
new :
x1 : float *
y1 : float *
x2 : float *
y2 : float -> InfiniteLine2
Parameters
- x1
- Type: SystemDouble
First point x-coordinate. - y1
- Type: SystemDouble
First point y-coordinate. - x2
- Type: SystemDouble
Second point x-coordinate. - y2
- Type: SystemDouble
Second point y-coordinate.
See Also