small adjusts
This commit is contained in:
parent
038145d3e5
commit
30ba975eb5
1 changed files with 5 additions and 5 deletions
10
src/main.go
10
src/main.go
|
|
@ -13,16 +13,16 @@ import (
|
|||
rl "github.com/gen2brain/raylib-go/raylib"
|
||||
)
|
||||
|
||||
const WIDTH = 200
|
||||
const HEIGHT = 200
|
||||
const WIDTH = 100
|
||||
const HEIGHT = 100
|
||||
const TEXTURE_SCALE = 4
|
||||
|
||||
const MAX_DIST = 1000.0
|
||||
const MAX_STEP = 200
|
||||
const MAX_DIST = 500.0
|
||||
const MAX_STEP = 100
|
||||
const EPS = 0.1
|
||||
const PI = math.Pi
|
||||
|
||||
const SOFT_SHADOW_COEFF = 32
|
||||
const SOFT_SHADOW_COEFF = 16
|
||||
|
||||
var lightPos Vector3
|
||||
var scene SDF
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue