Ray Constructor (Vector2, Vector2)
|
Initializes a new instance of the Ray class.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public Ray(
Vector2 origin,
Vector2 direction
)
Public Sub New (
origin As Vector2,
direction As Vector2
)
public:
Ray(
Vector2 origin,
Vector2 direction
)
new :
origin : Vector2 *
direction : Vector2 -> Ray
CONSTRUCTOR(
origin AS Vector2,
direction AS Vector2
)
Parameters
- origin
- Type: DXFReaderNETVector2
Ray start point. - direction
- Type: DXFReaderNETVector2
Ray end point.
See Also