WIP
This commit is contained in:
parent
8cc11ea130
commit
4b94f8c089
12 changed files with 24 additions and 4 deletions
|
|
@ -54,7 +54,10 @@ let getComplexValueForPixel x y height width zoom =
|
|||
Complex ((x-width/2.0)/zoom, (y-height/2.0)/zoom)
|
||||
|
||||
let colorMap i nMax =
|
||||
let h = ((float i) / 100.0) * 360.0
|
||||
let h =
|
||||
if ((float i) / 100.0) <= 1.0 then
|
||||
((float i) / 100.0) * 360.0
|
||||
else 360.0
|
||||
let s = 1.0
|
||||
let v = if i < nMax then 1.0 else 0.0
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue