Struct measurements::angle::Angle [] [src]

pub struct Angle { /* fields omitted */ }

The 'Angle' struct can be used to deal with angles in a common way.

Example

use measurements::Angle;

let whole_cake = Angle::from_degrees(360.0);
let pieces = 6.0;
let slice = whole_cake / pieces;
println!("Each slice will be {} degrees", slice.as_degrees());

Methods

impl Angle
[src]

[src]

Create a new Angle from a floating point value in degrees

[src]

Create a new Angle from a floating point value in radians

[src]

Convert this Angle to a floating point value in degrees

[src]

Convert this Angle to a floating point value in radians

[src]

Calculate the cosine of this angle

[src]

Calculate the sine of this angle

[src]

Calculate the sine and cosine of this angle

[src]

Calculate the tangent of this angle

[src]

Calculate the arcsine of a number

[src]

Calculate the arccosine of a number

[src]

Calculate the arctangent of a number

Trait Implementations

impl Copy for Angle
[src]

impl Clone for Angle
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Angle
[src]

[src]

Formats the value using the given formatter. Read more

impl Measurement for Angle
[src]

[src]

Get this quantity in the base units

[src]

Create a new quantity from the base units

[src]

Return the base unit for this type, as a string. For example "kilograms" Read more

[src]

Returns a string containing the most appropriate units for this quantity, and a floating point value representing this quantity in those units. Useful when, for example, a length might be in millimeters if it is very small, or kilometers when it is very large. Read more

[src]

Given a list of units and their scale relative to the base unit, select the most appropriate one. Read more

impl Display for Angle
[src]

[src]

Formats the value using the given formatter. Read more

impl Add for Angle
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl Sub for Angle
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl Div<Angle> for Angle
[src]

The resulting type after applying the / operator.

[src]

Performs the / operation.

impl Div<f64> for Angle
[src]

The resulting type after applying the / operator.

[src]

Performs the / operation.

impl Mul<f64> for Angle
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl Mul<Angle> for f64
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl Eq for Angle
[src]

impl PartialEq for Angle
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl PartialOrd for Angle
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations

impl Send for Angle

impl Sync for Angle