Tetrahedron


julia> t = Tetrahedron( PVector(1.0, 0.0, 1.0), PVector(1.0, 1.0, 0.0), PVector(0.0, 1.0, 1.0), PVector(1.0, 1.0, 1.0) )ERROR: UndefVarError: `PVector` not defined in `Main` Suggestion: check for spelling errors or missing imports. Hint: a global variable of this name also exists in PhysicalParticles.
julia> centroid(t)ERROR: UndefVarError: `t` not defined in `Main` Suggestion: add an appropriate import or assignment. This global was declared but not assigned.
julia> circumcenter(t)ERROR: UndefVarError: `t` not defined in `Main` Suggestion: add an appropriate import or assignment. This global was declared but not assigned.
julia> insphere(t, PVector(0.5, 0.5, 0.5))ERROR: UndefVarError: `t` not defined in `Main` Suggestion: add an appropriate import or assignment. This global was declared but not assigned.
julia> insphere(t, PVector())ERROR: UndefVarError: `t` not defined in `Main` Suggestion: add an appropriate import or assignment. This global was declared but not assigned.
julia> insphere(t, PVector(2.0, 0.0, 0.0))ERROR: UndefVarError: `t` not defined in `Main` Suggestion: add an appropriate import or assignment. This global was declared but not assigned.
julia> PhysicalMeshes.volume(t)ERROR: UndefVarError: `t` not defined in `Main` Suggestion: add an appropriate import or assignment. This global was declared but not assigned.
julia> orientation(t)ERROR: UndefVarError: `t` not defined in `Main` Suggestion: add an appropriate import or assignment. This global was declared but not assigned.