Struct OrientedPoint
Provides a description of a point with a direction into space.
Namespace: Mechatronics.SystemGraph
Syntax
[Serializable]
public struct OrientedPoint
Constructors
OrientedPoint(Vector3, Vector3)
Instanciate and set the position and orientation.
Declaration
public OrientedPoint(Vector3 _position, Vector3 _orientation)
Parameters
Type | Name | Description |
---|---|---|
Vector3 | _position | Position |
Vector3 | _orientation | Orientation |
Fields
orientation
Euler orientation of the point in space.
Declaration
public Vector3 orientation
Field Value
Type | Description |
---|---|
Vector3 |
position
Position of the point in space.
Declaration
public Vector3 position
Field Value
Type | Description |
---|---|
Vector3 |