Class Radian
Definition
- Namespace:
- Tizen.NUI
- Assembly:
- Tizen.NUI.dll
- API Level:
- 3
An angle in radians.
public class Radian : Disposable, IDisposable
- Inheritance
- Implements
Constructors
View SourceRadian()
The default constructor, initializes to 0.
Declaration
public Radian()
API Level: 3
View SourceRadian(Single)
Creates an angle in radians.
Declaration
public Radian(float value)
Parameters
Type | Name | Description |
---|---|---|
Single | value | The initial value in radians. |
API Level: 3
View SourceRadian(Degree)
Creates an angle in radians from an angle in degrees.
Declaration
public Radian(Degree degree)
Parameters
Type | Name | Description |
---|---|---|
Degree | degree | The initial value in degrees. |
API Level: 3
Properties
View SourceValue
The value in radians.
Declaration
public float Value { get; set; }
Property Value
Type | Description |
---|---|
Single |
API Level: 3
Methods
View SourceConvertToFloat()
Conversion to float.
Declaration
public float ConvertToFloat()
Returns
Type | Description |
---|---|
Single | The float value of this radian. |