clean up
This commit is contained in:
parent
f5c912c489
commit
a7f8b46910
8 changed files with 28 additions and 52 deletions
35
src/primitives_sdf.go
Normal file
35
src/primitives_sdf.go
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
package main
|
||||
|
||||
// Sphere
|
||||
type Sphere struct {
|
||||
center Vector3
|
||||
radius float64
|
||||
material Material
|
||||
}
|
||||
|
||||
func (s Sphere) Distance(p Vector3) (float64, Material) {
|
||||
return p.Sub(s.center).Length() - s.radius, s.material
|
||||
}
|
||||
|
||||
// Box
|
||||
type Box struct {
|
||||
center Vector3
|
||||
dimensions Vector3
|
||||
material Material
|
||||
}
|
||||
|
||||
func (s Box) Distance(p Vector3) (float64, Material) {
|
||||
q := p.Sub(s.center).Abs().Sub(s.dimensions)
|
||||
return q.Max(0.0).Length() + min(max(q.X, max(q.Y, q.Z)), 0.0), s.material
|
||||
}
|
||||
|
||||
// Plane
|
||||
type Plane struct {
|
||||
normal Vector3
|
||||
height float64
|
||||
material Material
|
||||
}
|
||||
|
||||
func (s Plane) Distance(p Vector3) (float64, Material) {
|
||||
return p.Dot(s.normal) - s.height, s.material
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue