| Line Constructor (Vector3F, Vector3F) |
Initializes a new instance of
Line from a point and a direction.
Namespace: DigitalRune.Geometry.ShapesAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public Line(
Vector3F pointOnLine,
Vector3F direction
)
Public Sub New (
pointOnLine As Vector3F,
direction As Vector3F
)
public:
Line(
Vector3F pointOnLine,
Vector3F direction
)
new :
pointOnLine : Vector3F *
direction : Vector3F -> Line
Parameters
- pointOnLine
- Type: DigitalRune.Mathematics.AlgebraVector3F
A point on the line. - direction
- Type: DigitalRune.Mathematics.AlgebraVector3F
The direction. (Must be normalized.)
See Also