MCPcopy
hub / github.com/g3n/engine / Dump

Method Dump

loader/collada/library_geometries.go:98–104  ·  view source on GitHub ↗

Dump prints out information about the Vertices

(out io.Writer, indent int)

Source from the content-addressed store, hash-verified

96
97// Dump prints out information about the Vertices
98func (v *Vertices) Dump(out io.Writer, indent int) {
99
100 fmt.Fprintf(out, "%sVertices id:%s name:%s\n", sIndent(indent), v.Id, v.Name)
101 for _, inp := range v.Input {
102 inp.Dump(out, indent+step)
103 }
104}
105
106//
107// Input

Callers

nothing calls this directly

Calls 2

sIndentFunction · 0.85
DumpMethod · 0.45

Tested by

no test coverage detected