MCPcopy Create free account
hub / github.com/melonjs/melonJS / toString

Method toString

packages/melonjs/src/math/matrix3d.ts:863–871  ·  view source on GitHub ↗

* convert the object to a string representation * @returns stringified representation

()

Source from the content-addressed store, hash-verified

861 * @returns stringified representation
862 */
863 toString() {
864 const a = this.val;
865
866 return `Matrix3d(${a[0]}, ${a[1]}, ${a[2]}, ${a[3]}, ${a[4]}, ${a[5]}, ${
867 a[6]
868 }, ${a[7]}, ${a[8]}, ${a[9]}, ${a[10]}, ${a[11]}, ${a[12]}, ${a[13]}, ${
869 a[14]
870 }, ${a[15]})`;
871 }
872}
873
874export const matrix3dPool = createPool<Matrix3d, ConstructorArg>(

Callers 15

registerFunction · 0.45
toHexFunction · 0.45
parseAsepriteFileFunction · 0.45
parsePKMFunction · 0.45
parseDDSFunction · 0.45
setTextMethod · 0.45
setTextMethod · 0.45
mat3d.spec.tsFile · 0.45
tryLoadSourceFunction · 0.45
mat2d.spec.tsFile · 0.45
measureFunction · 0.45

Calls

no outgoing calls

Tested by 3

measureFunction · 0.36
checkInvariantsFunction · 0.36
expectNoGLErrorsFunction · 0.36