Ian Mackenzie

Results 122 issues of Ian Mackenzie

All just no-ops that just convert between equivalent units types: - `Force.energyPerLength : Quantity Float (Rate Joules Meters) -> Force` - `Force.asEnergyPerLength : Force -> Quantity Float (Rate Joules Meters)`...

breaking change

Here's a list of modules that I'd like to add at some point - pull requests for any of these are welcome! (Take a look at existing modules for inspiration.)...

help wanted
Hacktoberfest

Seems that multiplication/division by a `Float` is more common than multiplication/division by another `Quantity`, so would probably be a net savings to use the shorter names for the `Float` case...

breaking change

Although the Elm compiler now compiles the representation of a `Quantity` down to a plain `Int` or `Float` when `--optimize` is used, there is still a performance overhead of using...

help wanted

## Pros - Only one module to import - Less risk of module naming collisions - Unified namespace for operators: `Quantity.sin` instead of `Angle.sin` - More understandable naming for pixel-related...

breaking change

- Allow both `Temperature` and `Temperature.Delta` to use `degreesCelsius`, `inDegreesCelsius` etc. - Allow `import Temperature.Delta as Quantity` without name clashes - More clearly separate the two concepts

breaking change

Currently the process for determining the exact conversion factors used in different modules has been a bit ad-hoc - mostly just scouring Wikipedia for what seemed like the most generally-accepted...

Would it make sense to add `Color.black` and `Color.white` as convenient alternatives to `Color.fromRGB ( 0, 0, 0 )` and `Color.fromRGB ( 255, 255, 255 )`? I realize that they...

When using `toWebGLEntities` to interop with other WebGL code, the automatic computation of near and far clip depth from scene bounds makes it very difficult to ensure the same near/far...

It would be great to have something like ```elm Control.float : { min : Float, max : Float } -> Float -> Control Float ``` implemented as a slider (in...