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