Dump prints out information about the Tristrips
(out io.Writer, indent int)
| 219 | |
| 220 | // Dump prints out information about the Tristrips |
| 221 | func (is *InputShared) Dump(out io.Writer, indent int) { |
| 222 | |
| 223 | fmt.Fprintf(out, "%sInputShared offset:%d semantic:%s source:%s set:%d\n", |
| 224 | sIndent(indent), is.Offset, is.Semantic, is.Source, is.Set) |
| 225 | } |
| 226 | |
| 227 | // Decodes "library_geometry" children |
| 228 | func (d *Decoder) decLibraryGeometries(start xml.StartElement, dom *Collada) error { |