Visual Studio Code – Unexpected VS Code debugger values
Function I have this function to detect if a tetrahedron has almost zero volume, i.e. it's flat: import ( "math" v3 "github.com/deadsy/sdfx/vec/v3" ) // MATHEMATICA script is available here: // https://math.stackexchange.com/a/4709610/197913 func isZeroVolume(a, b, c, d v3.Vec) (bool, float64) {…