AWKitMath.h

Includes:
<CoreGraphics/CoreGraphics.h>

Introduction

Use the links in the table of contents to the left to access the documentation.



Functions

AWAbs
AWCeil
AWFloor
AWRound

AWAbs


inline CGFloat AWAbs(
    CGFloat value) 
Parameters
value

- Value to absolute.

Return Value

Absolute value of `value`

Discussion

Use this method to handle 32/64 bit correctly.


AWCeil


inline CGFloat AWCeil(
    CGFloat value) 
Parameters
value

- Value to ceil.

Return Value

Ceil value of `value`

Discussion

Use this method to handle 32/64 bit correctly.


AWFloor


inline CGFloat AWFloor(
    CGFloat value) 
Parameters
value

- Value to floor.

Return Value

Floor value of `value`

Discussion

Use this method to handle 32/64 bit correctly.


AWRound


inline CGFloat AWRound(
    CGFloat value) 
Parameters
value

- Value to round

Return Value

Rounded value of `value`

Discussion

Use this method to handle 32/64 bit correctly.