minor
- made map more fance - changed draw-dist, camera start-pos & max cam distance from plane
This commit is contained in:
parent
38d807b9b1
commit
d59e13e64f
@ -111,11 +111,11 @@ main = do
|
||||
|
||||
glHud <- initHud
|
||||
let zDistClosest = 1
|
||||
zDistFarthest = zDistClosest + 30
|
||||
zDistFarthest = zDistClosest + 50
|
||||
--TODO: Move near/far/fov to state for runtime-changability & central storage
|
||||
fov = 90 --field of view
|
||||
near = 1 --near plane
|
||||
far = 100 --far plane
|
||||
far = 500 --far plane
|
||||
ratio = fromIntegral fbWidth / fromIntegral fbHeight
|
||||
frust = createFrustum fov near far ratio
|
||||
aks = ArrowKeyState {
|
||||
@ -160,8 +160,8 @@ main = do
|
||||
, _zDist = 10
|
||||
, _frustum = frust
|
||||
, _camPosition = Types.Position
|
||||
{ Types._x = 5
|
||||
, Types._y = 5
|
||||
{ Types._x = 25
|
||||
, Types._y = 25
|
||||
}
|
||||
}
|
||||
, _io = IOState
|
||||
|
@ -8,7 +8,7 @@ gauss2Dgeneral :: Floating q => q -> q -> q -> q -> q -> q -> q -> q
|
||||
gauss2Dgeneral amp x0 y0 sX sY x y = amp * exp (-(((x-x0)^2/(2 * sX^2))+((y-y0)^2/(2 * sY^2))))
|
||||
|
||||
gauss2D :: Floating q => q -> q -> q
|
||||
gauss2D x y = gauss2Dgeneral 45 100.0 100.0 50.0 50.0 x y
|
||||
gauss2D x y = gauss2Dgeneral 15 100.0 100.0 15.0 15.0 x y
|
||||
|
||||
-- 2D Manhattan distance
|
||||
mnh2D :: (Int,Int) -> (Int,Int) -> Int
|
||||
|
Loading…
Reference in New Issue
Block a user