Angle
Short summary
A datatype for angles based on angular units. It can be converted to other units with the function CNM_RecipeHandling.ConvertAngle.
Access: -
Inherits from: BaseParameter
| Name | Type | Comment |
|---|---|---|
| unit | AngleUnit | the angular unit |
Code
Declaration
TYPE Angle EXTENDS BaseParameter:
STRUCT
(* the angular unit *)
unit :AngleUnit := AngleUnit.RADIANS;
END_STRUCT
END_TYPE