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

Method Append

math32/array.go:244–247  ·  view source on GitHub ↗

Append appends n elements to the array updating the slice if necessary

(v ...uint32)

Source from the content-addressed store, hash-verified

242
243// Append appends n elements to the array updating the slice if necessary
244func (a *ArrayU32) Append(v ...uint32) {
245
246 *a = append(*a, v...)
247}
248
249// ToUint32 converts this array to an array of uint32
250func (a ArrayU32) ToUint32() []uint32 {

Callers 13

NewSpriteFunction · 0.95
NewSegmentedPlaneFunction · 0.95
NewDiskSectorFunction · 0.95
NewRibbonFunction · 0.95
NewSphereSectorFunction · 0.95
NewSegmentedBoxFunction · 0.95
NewTruncatedConeSectorFunction · 0.95
NewTorusFunction · 0.95
InitializeMethod · 0.95
newMeshPolylistFunction · 0.95
newMeshTrianglesFunction · 0.95
newMeshLinesFunction · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected