Last active
January 2, 2016 08:19
-
-
Save erichgess/8275183 to your computer and use it in GitHub Desktop.
A Sample of F# Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Adding a comment | |
module Light | |
open Point | |
open System.Drawing | |
type Light ( position: Point3, color: Color ) = | |
member this.Position = position | |
member this.Color = color | |
let AddColors (c1: Color) (c2: Color) = | |
let byteAdder a b = | |
let sum = int(a) + int(b) | |
if sum > 255 then 255 else sum | |
let r = byteAdder c1.R c2.R | |
let g = byteAdder c1.G c2.G | |
let b = byteAdder c1.B c2.B | |
Color.FromArgb(255, r, g, b ) | |
let MultiplyColors (c1: Color) ( c2: Color ) = | |
let byteMultiplier a b = | |
let a = float(a) / 255. | |
let b = float(b) / 255. | |
let product = a * b | |
int( product * 255. ) | |
let r = byteMultiplier c1.R c2.R | |
let g = byteMultiplier c1.G c2.G | |
let b = byteMultiplier c1.B c2.B | |
Color.FromArgb( 255, r, g, b ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment